Skip to content

Instantly share code, notes, and snippets.

@nashmaniac
Last active October 23, 2019 20:37
Show Gist options
  • Save nashmaniac/4705f100b0a13b6f58a6bf62557fc322 to your computer and use it in GitHub Desktop.
Save nashmaniac/4705f100b0a13b6f58a6bf62557fc322 to your computer and use it in GitHub Desktop.
Helm & Tiller
kubectl create serviceaccount --namespace kube-system tiller
kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'
kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'
helm init
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment