Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

How can I completely uninstall minikube in windows 10?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.5k views
Welcome To Ask or Share your Answers For Others

1 Answer

This as simple as running:

minikube stop & REM stops the VM

minikube delete & REM deleted the VM

Then delete the .minikube and .kube directories usually under:

C:users{user}.minikube

and

C:users{user}.kube

Or if you are using chocolatey:

C:ProgramDatachocolateyinminikube stop
C:ProgramDatachocolateyinminikube delete
choco uninstall minikube
choco uninstall kubectl

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...