Created
February 24, 2018 22:42
-
-
Save qcho/81e23f55820faed28a8b8fc65e64c2f9 to your computer and use it in GitHub Desktop.
rbac enabled helm init script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
kubectl create serviceaccount -n kube-system tiller | |
kubectl create clusterrolebinding tiller-binding --clusterrole=cluster-admin --serviceaccount kube-system:tiller | |
helm init --service-account tiller |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment