Can we run minikube without RBAC. Please see the attached screenshot. Looks like RBAC is enabled by default.
Since minikube v0.26.0 the default bootstrapper is kubeadm - which enables RBAC by default.
For the previous versions, you have to explicitly enable it by adding a flag
-extra-config=apiserver.Authorization.Mode=RBAC
Otherwise it will not be enabled
To disable RBAC in latest versions of the minikube, set following flag
--extra-config=apiserver.authorization-mode=AlwaysAllow
If it won't work, try workaround suggested here