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

北战南征 提交于 2019-12-03 23:57:04

following are the points to be remembered while starting minikube for such errors.

1) close the VirtualBox if opened.
2) delete the previous temp files generated.
3) if you are behind the proxy set the proxy.
4) then do the following...

    $ minikube stop
    $ minikube delete  
    $ minikube start

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!