本文介绍了如何在Windows 10 Pro中完全卸载Minikube? (巧克力)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我意识到Windows 10 Docker现在具有Kubernetes选项,因此我想完全卸载minikube并改用Docker Windows随附的Kubernetes版本.
I came to the realization that Windows 10 Docker has the Kubernetes options in it now, so I want to completely uninstall minikube and use the Kubernetes version that comes with docker windows instead.
如何在Windows 10中完全卸载minikube?
How can I completely uninstall minikube in windows 10?
推荐答案
这就像运行一样简单:
minikube stop & REM stops the VM
minikube delete & REM deleted the VM
然后通常在以下位置删除.minikube
和.kube
目录:
Then delete the .minikube
and .kube
directories usually under:
C:\users\{user}\.minikube
和
C:\users\{user}\.kube
或者,如果您使用巧克力:
Or if you are using chocolatey:
C:\ProgramData\chocolatey\bin\minikube stop
C:\ProgramData\chocolatey\bin\minikube delete
choco uninstall minikube
choco uninstall kubectl
这篇关于如何在Windows 10 Pro中完全卸载Minikube? (巧克力)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!