Created
April 7, 2019 02:48
-
-
Save mvillarrealb/370480290dafef7cf68c9af62aa2e62d to your computer and use it in GitHub Desktop.
Create tiller service account and links to kubernetes cluster
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
#Create tiller service account | |
kubectl -n kube-system create serviceaccount tiller | |
#Create cluster role binding for tiller | |
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller | |
#Initialize tiller | |
helm init --service-account tiller |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment