Update the RBAC hints for 1.5.1

The `--extra-config` argument now would be `apiserver.GenericServerRunOptions.AuthorizationMode`, and additionally one typically wants to set the super user as well.

It seems that this will change again soon, see ca2b5f136e and related
pull/969/head
Andreas Kohn 2017-01-06 15:57:51 +01:00
parent 7b684b8855
commit 7fcabd5b5c
No known key found for this signature in database
GPG Key ID: B03FDDBC66E99F92
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ To change the `MaxPods` setting to 5 on the Kubelet, pass this flag: `--extra-co
This feature also supports nested structs. To change the `LeaderElection.LeaderElect` setting to `true` on the scheduler, pass this flag: `--extra-config=scheduler.LeaderElection.LeaderElect=true`.
To set the `AuthorizationMode` on the `apiserver` to `RBAC`, you can use: `--extra-config=apiserver.AuthorizationMode=RBAC`.
To set the `AuthorizationMode` on the `apiserver` to `RBAC`, you can use: `--extra-config=apiserver.GenericServerRunOptions.AuthorizationMode=RBAC`. You should use `--extra-config=apiserver.GenericServerRunOptions.AuthorizationRBACSuperUser=minikube` as well in that case.
### Stopping a Cluster
The [minikube stop](./docs/minikube_stop.md) command can be used to stop your cluster.