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
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.