Skip to content

Instantly share code, notes, and snippets.

@vishnuhd
Last active August 8, 2019 11:53
Show Gist options
  • Save vishnuhd/08a5b830a4dbf2476ee40ace18e36a31 to your computer and use it in GitHub Desktop.
Save vishnuhd/08a5b830a4dbf2476ee40ace18e36a31 to your computer and use it in GitHub Desktop.
setup helm tiller

Install Helm using the Helm installation instructions.

  • Create an RBAC service account.
kubectl create serviceaccount tiller -n kube-system
  • Bind the cluster-admin role to the service account.
kubectl create clusterrolebinding tiller \
--clusterrole=cluster-admin \
--serviceaccount kube-system:tiller
  • Install Tiller with the service account enabled.
helm init --service-account tiller
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment