Skip to content

Instantly share code, notes, and snippets.

@rk295
Last active September 26, 2018 11:07
Show Gist options
  • Save rk295/75ed634576c14556730f9e734027e59e to your computer and use it in GitHub Desktop.
Save rk295/75ed634576c14556730f9e734027e59e to your computer and use it in GitHub Desktop.
How to start minikube 0.28.2 without RBAC

Lots of documentation suggests variations on this option, but this is the correct one as of minikube version v0.28.2. Ensure you pay particular attention to the capitalisation of the words and the hyphen between authorization and mode!

minikube start --extra-config=apiserver.authorization-mode=AlwaysAllow

Verifying

To verify this is working do the following:

minikube ssh

And then at the prompt run:

ps aux | grep apiserver

And look for --authorization-mode=AlwaysAllow in the options passed to the kube-apiserver process.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment