From 652c0f65e34558392939e9b72711c3aefc05cd36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Mart=C3=ADnez=20Trivi=C3=B1o?= Date: Thu, 16 Aug 2018 11:11:30 -0700 Subject: [PATCH 1/2] Update documentation about enabling RBAC in minikube --- docs/developer/tiller-proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer/tiller-proxy.md b/docs/developer/tiller-proxy.md index 18fb8ac32f3..3d9def1b4b5 100644 --- a/docs/developer/tiller-proxy.md +++ b/docs/developer/tiller-proxy.md @@ -44,7 +44,7 @@ This builds the `tiller-proxy` binary in the working directory. If you are using Minikube it is important to start the cluster enabling RBAC (in order to check the authorization features): ``` -minikube start --extra-config=apiserver.Authorization.Mode=RBAC +minikube start --extra-config=apiserver.authorization-mode=RBAC eval $(minikube docker-env) ``` From 4235c5afb4b240193b9c3ee82a4cee6eadd3a02f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81ngel=20Mart=C3=ADnez=20Trivi=C3=B1o?= Date: Thu, 23 Aug 2018 14:00:02 -0700 Subject: [PATCH 2/2] Remove rbac flag --- docs/developer/tiller-proxy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developer/tiller-proxy.md b/docs/developer/tiller-proxy.md index 3d9def1b4b5..4f69eccc73a 100644 --- a/docs/developer/tiller-proxy.md +++ b/docs/developer/tiller-proxy.md @@ -41,10 +41,10 @@ This builds the `tiller-proxy` binary in the working directory. ### Running in development -If you are using Minikube it is important to start the cluster enabling RBAC (in order to check the authorization features): +If you are using Minikube it is important to start the cluster enabling RBAC (on by default in Minikube 0.26+) in order to check the authorization features: ``` -minikube start --extra-config=apiserver.authorization-mode=RBAC +minikube start eval $(minikube docker-env) ```