From b2145be3254813fdd02cd4f02d48e8d4b88032f7 Mon Sep 17 00:00:00 2001 From: Marcos Diez Date: Wed, 13 Mar 2019 10:59:25 -0300 Subject: [PATCH] updated documentation --- docs/configuring_kubernetes.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/configuring_kubernetes.md b/docs/configuring_kubernetes.md index fead924028..ee5edcd926 100644 --- a/docs/configuring_kubernetes.md +++ b/docs/configuring_kubernetes.md @@ -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 ```