1

Going through blogs/official sites, I installed kubectl and minikube. After successful installation of both, I executed the following command.

minikube start --driver=hyperv

After executing the above command I am struck and the process is not completed at all as mentioned below screenshot. enter image description here

The process has been running in step:4 (Updating the running hyperv "minikube" VM...) for more than 30 minutes.

Please help me to resolve this as I just started learning Kubernetes.

Thanks in advance.

akhil
  • 1,649
  • 3
  • 19
  • 31

1 Answers1

1

Maybe this can help (from here Minikube is slow and unresponsive):

1) Debugging issues with minikube by adding -v flag and set debug level (0, 1, 2, 3, 7).

As example: minikube start --v=1 to set outbut to INFO level.
More detailed information here

2) Use logs command minikube logs

3) Because Minikube is working on Virtual Machine sometimes is better to delete minikube and start it again (It helped in this case).

minikube delete
minikube start

4) It might get slow due to lack of resources.

Minikube as default is using 2048MB of memory and 2 CPUs. More details about this can be fund here In addition, you can enforce Minikue to create more using command minikube start --cpus 4 --memory 8192

Bguess
  • 1,700
  • 1
  • 11
  • 24