Skip to content

Instantly share code, notes, and snippets.

@mvillarrealb
Created April 7, 2019 02:48
Show Gist options
  • Save mvillarrealb/370480290dafef7cf68c9af62aa2e62d to your computer and use it in GitHub Desktop.
Save mvillarrealb/370480290dafef7cf68c9af62aa2e62d to your computer and use it in GitHub Desktop.
Create tiller service account and links to kubernetes cluster
#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