点击这里下载。
选择对应版本的二进制安装包,并执行如下命令:
tar -zxvf helm-v2.0.0-linux-amd64.tgz
mv linux-amd64/helm /usr/local/bin/helm
使用集群预创建的ClusterRole <cluster-admin>
kubectl apply -f rabc-config.yaml
# 初始化并更换国内的源
helm init --service-account tiller --history-max 200 --tiller-image localhost:5000/tiller:v2.14.0 \
--stable-repo-url https://kubernetes.oss-cn-hangzhou.aliyuncs.com/charts
# 修改镜像
kubectl set image deployments/tiller-deploy tiller=localhost:5000/tiller:v2.14.0 -n kube-system
# 卸载
kubectl delete deployment tiller-deploy -n kube-system
# 或者
helm reset