kubectl -n kube-system create sa tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
Last active
October 30, 2021 17:04
-
-
Save mgoodness/bd887830cd5d483446cc4cd3cb7db09d to your computer and use it in GitHub Desktop.
Helm RBAC setup for K8s v1.6+ (tested on minikube)
👍 working
Worked for me kubernetes 1.8.1
Worked with 1.8.2 as well 👍 Thanks !
Thanks!
A discussion of the security implications here would be useful.
Tested on 1.8.3. Works too! Thanks man
@tmc I think with this, anyone who has enough access to talk to tiller (which requires you be able to use the k8s API to port forward or exec I think) has root on the cluster.
Thanks. had been stuck for hours...
Awesome thanks!
Thanks a lot, it saves me a lot of hours....
Thanks a lot.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks!