Skip to content

Instantly share code, notes, and snippets.

@yokodev
Last active October 12, 2018 09:01
Show Gist options
  • Save yokodev/72a3646d7c24d3608adc28622bb78871 to your computer and use it in GitHub Desktop.
Save yokodev/72a3646d7c24d3608adc28622bb78871 to your computer and use it in GitHub Desktop.
This is how I was able to install helm for GKE
https://github.com/helm/helm/issues/3130#issuecomment-372931407
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