From 2f8d4b1d503f3495afded2b6bc0993394d68928d Mon Sep 17 00:00:00 2001 From: Alberto Alvarez Date: Thu, 14 Feb 2019 22:01:05 -0800 Subject: [PATCH] Update docs/README.md, fix configuring_kubernetes URL and move the doc to the right dir --- docs/README.md | 2 ++ docs/{contributors => }/openid_connect_auth.md | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) rename docs/{contributors => }/openid_connect_auth.md (89%) diff --git a/docs/README.md b/docs/README.md index bdfd18a68e..3c6a2dd1a4 100644 --- a/docs/README.md +++ b/docs/README.md @@ -14,6 +14,8 @@ * **GPUs** ([gpu.md](gpu.md)): Using NVIDIA GPUs on minikube +* **OpenID Connect Authentication** ([openid_connect_auth](openid_connect_auth)): Using OIDC Authentication on minikube + ### Installation and debugging * **Driver installation** ([drivers.md](drivers.md)): In depth instructions for installing the various hypervisor drivers diff --git a/docs/contributors/openid_connect_auth.md b/docs/openid_connect_auth.md similarity index 89% rename from docs/contributors/openid_connect_auth.md rename to docs/openid_connect_auth.md index b2020b13aa..27345e0a61 100644 --- a/docs/contributors/openid_connect_auth.md +++ b/docs/openid_connect_auth.md @@ -7,7 +7,7 @@ Read more about OpenID Connect Authentication for Kubernetes here: https://kuber ## Configuring the API Server -Configuration values can be passed to the API server using the `--extra-config` flag on the `minikube start` command. See [configuring_kubernetes.md](configuring_kubernetes.md) for more details. +Configuration values can be passed to the API server using the `--extra-config` flag on the `minikube start` command. See [configuring_kubernetes.md](https://github.com/kubernetes/minikube/blob/master/docs/configuring_kubernetes.md) for more details. The following example configures your Minikube cluster to support RBAC and OIDC: @@ -16,7 +16,7 @@ minikube start \ --extra-config=apiserver.authorization-mode=RBAC \ --extra-config=apiserver.oidc-issuer-url=https://example.com \ --extra-config=apiserver.oidc-username-claim=email \ - --extra-config=apiserver.oidc-client-id="kubernetes-local" + --extra-config=apiserver.oidc-client-id=kubernetes-local ``` ## Configuring kubectl