Install HELM
run install scripts
wget -q -O - https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash
create helm ServiceAccount
kubectl create serviceaccount --namespace kube-system tiller
kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
kubectl patch deploy --namespace kube-system tiller-deploy -p ‘{“spec”:{“template”:{“spec”:{“serviceAccount”:“tiller”}}}}’

本文详细介绍了如何使用wget命令下载并安装Helm包管理工具,随后通过一系列kubectl命令创建了Tiller服务帐户,并为其分配集群角色绑定,最后更新了Tiller部署的serviceAccount设置。
913

被折叠的 条评论
为什么被折叠?



