'Purpose of --wait=false in minikube start command

I am new to kubernetes.

Can someone please explain that what is the real purpose of "--wait=false" in minikube start --wait=false command?

I am not able to find the appropriate answer in internet.



Solution 1:[1]

minikube start -options

According to documentation:

--wait strings                      comma separated list of Kubernetes components to verify and wait for after starting a cluster. defaults to "apiserver,system_pods", available options: "apiserver,system_pods,default_sa,apps_running,node_ready,kubelet" . other acceptable values are 'all' or 'none', 'true' and 'false' (default [apiserver,system_pods])
 

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user18464468