0

Why am I getting this error when starting minikube?

minikube start --vm-driver=hyperkit --disk-size=2g
Starting local Kubernetes v1.9.4 cluster...
Starting VM...
E0410 16:26:12.652851    6972 start.go:159] Error starting host: Error starting stopped host: Machine didn't return an IP after 120 seconds, aborting.

and how would you fix it?

mohan08p
  • 5,002
  • 1
  • 28
  • 36
Snowcrash
  • 80,579
  • 89
  • 266
  • 376
  • check this thread, https://github.com/kubernetes/minikube/issues/521 – mohan08p Apr 10 '18 at 16:07
  • That is a common error. Can you run minikube with the `--loglevel=0 -v 4` and post the log somewhere? – Anton Kostenko Apr 11 '18 at 13:30
  • please refer here for solution to similar issue [minikube error troubleshooting........](https://stackoverflow.com/questions/52300055/error-restarting-cluster-restarting-kube-proxy-waiting-for-kube-proxy-to-be-up/52740196#52740196) – Abhishek D K Nov 05 '18 at 13:27

1 Answers1

1

Have you tried minikube delete followed by minikube start --vm-driver=hyperkit (or are you using another driver)?

Tobi
  • 904
  • 1
  • 8
  • 29