Update docs/README.md, fix configuring_kubernetes URL and move the doc to the right dir
parent
3f20dcd380
commit
2f8d4b1d50
|
@ -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
|
||||
|
|
|
@ -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
|
Loading…
Reference in New Issue