Skip to content

Instantly share code, notes, and snippets.

@satriashp
Forked from steebchen/install-helm.sh
Created October 14, 2019 06:01
Show Gist options
  • Select an option

  • Save satriashp/a2428fb63dd70935f7a82e052b0e4e1e to your computer and use it in GitHub Desktop.

Select an option

Save satriashp/a2428fb63dd70935f7a82e052b0e4e1e to your computer and use it in GitHub Desktop.
install helm on k8s kubeadm cluster with rbac
# install helm
curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get | bash
kubectl create serviceaccount -n kube-system tiller
kubectl create clusterrolebinding tiller-binding --clusterrole=cluster-admin --serviceaccount kube-system:tiller
# run tiller with specific tiller account
helm init --service-account tiller
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment