Minikube never start - Error restarting cluster

帅比萌擦擦* 提交于 2019-11-29 15:30:31
VAS

Minikube VM is usually started for simple experiments without any important payload. That's why it's much easier to recreate minikube cluster than trying to fix it.

To delete existing minikube VM execute the following command:

minikube delete

This command shuts down and deletes the minikube virtual machine. No data or state is preserved.

Check if you have all dependencies at place and run command:

minikube start

This command creates a “kubectl context” called “minikube”. This context contains the configuration to communicate with your minikube cluster. minikube sets this context to default automatically, but if you need to switch back to it in the future, run:

kubectl config use-context minikube

Or pass the context on each command like this:

kubectl get pods --context=minikube

More information about command line arguments can be found here.

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