updated documentation

pull/3879/head
Marcos Diez 2019-03-13 10:59:25 -03:00
parent 7de36ed9a1
commit b2145be325
1 changed files with 3 additions and 0 deletions

View File

@ -9,6 +9,7 @@ This flag is repeated, so you can pass it several times with several different v
The kubeadm bootstrapper can be configured by the `--extra-config` flag on the `minikube start` command. It takes a string of the form `component.key=value` where `component` is one of the strings
* kubeadm
* kubelet
* apiserver
* controller-manager
@ -18,4 +19,6 @@ and `key=value` is a flag=value pair for the component being configured. For ex
```shell
minikube start --extra-config=apiserver.v=10 --extra-config=kubelet.max-pods=100
minikube start --extra-config=kubeadm.ignore-preflight-errors=SystemVerification # allows any version of docker
```