Skip to content

Instantly share code, notes, and snippets.

@tairov
Last active May 1, 2018 20:11
Show Gist options
  • Save tairov/59c5ac646e1487ce519330be40ae1553 to your computer and use it in GitHub Desktop.
Save tairov/59c5ac646e1487ce519330be40ae1553 to your computer and use it in GitHub Desktop.
minikube / helm / RBAC issue resolve
# resolving problems with RBAC on minikube https://kubernetes.io/docs/admin/authorization/rbac/
minikube delete
minikube start
# check containers status
kubectl get pods --all-namespaces
# wait until all containers will be initialized
kubectl -n kube-system create sa tiller
kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller
helm init --service-account tiller
# ls should work without errors
helm ls
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment