Merge pull request #7443 from vikkyomkar/issue-7406
Docs on how to enable feature gatespull/7329/head
commit
7ec035ebe2
|
|
@ -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
|
||||
```
|
||||
|
|
|
|||
Loading…
Reference in New Issue