docs icon indicating copy to clipboard operation
docs copied to clipboard

Document Helm Tiller Installation with RBAC

Open osterman opened this issue 6 years ago • 0 comments

Create tiller service account:

kubectl -n kube-system create serviceaccount tiller

kubectl create clusterrolebinding tiller \
--clusterrole=cluster-admin \
--serviceaccount=kube-system:tiller

Upgrde tiller

helm init --service-account tiller --upgrade

See also make helm/toolbox/upsert in https://raw.githubusercontent.com/cloudposse/build-harness/master/bin/helm_toolbox.sh

osterman avatar Mar 06 '19 00:03 osterman