-
-
Save tairov/59c5ac646e1487ce519330be40ae1553 to your computer and use it in GitHub Desktop.
minikube / helm / RBAC issue resolve
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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