helm v3试用

一、安装

https://github.com/helm/helm/releases
下载最新版本的helm

二、试用

# 添加charts源
helm repo add apphub https://apphub.aliyuncs.com
helm repo add stable https://kubernetes-charts.storage.googleapis.com/
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/

# 生成本地索引
helm repo list
helm repo update

# 安装
helm search repo guestbook
helm install guestbook apphub/guestbook

注:helm v3增加了hub和repo的概念,hub只是一个展示repo的广场

你可能感兴趣的:(helm v3试用)