Merge pull request #7443 from vikkyomkar/issue-7406

Docs on how to enable feature gates
pull/7329/head
Thomas Strömberg 2020-04-06 16:17:43 -07:00 committed by GitHub
commit 7ec035ebe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -55,3 +55,11 @@ For instance, to allow Kubernetes to launch on an unsupported Docker release:
```shell
minikube start --extra-config=kubeadm.ignore-preflight-errors=SystemVerification
```
## Enable feature gates
Kubernetes alpha/experimental features can be enabled or disabled by the `--feature-gates` flag on the `minikube start` command. It takes a string of the form `key=value` where key is the `component` name and value is the `status` of it.
```shell
minikube start --feature-gates=EphemeralContainers=true
```