Merge pull request #15661 from kubernetes/medyagh-patch-1

site: Add "--extra-config=kubeadm.skip-phases=preflight" to FAQ
pull/15666/head
Medya Ghazizadeh 2023-01-17 11:16:00 -08:00 committed by GitHub
commit 6bac76f421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

View File

@ -165,3 +165,12 @@ minikube start
Currently a static IP can only be set when using the Docker or Podman driver.
For more details see the [static IP tutorial]({{< ref "docs/tutorials/static_ip.md" >}}).
## How to ignore the kubeadm requirements and pre-flight checks (such as minimum CPU count)?
Kubeadm has certain software and hardware requirements to maintain a stable Kubernetes cluster. However, these requirements can be ignored (such as when running minikube on a single CPU) by running the following:
```
minikube start --force --extra-config=kubeadm.skip-phases=preflight
```
This is not recommended, but for some users who are willing to accept potential performance or stability issues, this may be the only option.