Skip to content

Instantly share code, notes, and snippets.

@ganeshmaharaj
Created November 1, 2017 06:54
Show Gist options
  • Save ganeshmaharaj/11207ed864fb7ad6d327983f6b862466 to your computer and use it in GitHub Desktop.
Save ganeshmaharaj/11207ed864fb7ad6d327983f6b862466 to your computer and use it in GitHub Desktop.
kube-tiller-stuff
The below changes are needed to get helm & tiller working with an existing kubernetes system.
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"}}}}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment