7

While running the minikube start in windows 10, getting the following error.

Error : Error restarting cluster: restarting kube-proxy: waiting for kube-proxy to be up for configmap update: timed out waiting for the condition

Please help me resolve the give issue, I delete the minikube and restarted many time.

0xC0DED00D
  • 19,522
  • 20
  • 117
  • 184
Asif Nawaz
  • 73
  • 1
  • 5

3 Answers3

15

I faced the same issue on Centos 7

minikube delete

then

minikube start

solved my issue

Mahmoud Eltayeb
  • 436
  • 5
  • 7
0

I was getting the same error on mac os, tried almost everything but finally, this comment on GitHub saved my life :)
see steps

Now minikube has started as expected:

enter image description here

Awn Ali
  • 1,361
  • 1
  • 17
  • 31
0

Below steps works for me :

Note : Do not work with root user

$ sudo minikube stop

$ sudo minikube delete

$ sudo rm -rf ~/.minikube

$ sudo minikube start --kubernetes-version=v1.12.4

you can specify any existing kubernetes version of your choice with prefix v compulsory

make sure .minikube directory created in users home directory but not in /root

kalyani chaudhari
  • 7,515
  • 3
  • 24
  • 21