Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to completely uninstall Minikube in windows 10 Pro? (chocolatey)

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?

like image 429
PolarBear10 Avatar asked Nov 12 '18 13:11

PolarBear10


People also ask

How remove Minikube Linux?

First, run minikube delete to remove minikube VM (or container if run with docker driver), virtual network interfaces configured on the host machine and all other traces of minikube cluster. Only then you can safely remove its binary.


1 Answers

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:\ProgramData\chocolatey\bin\minikube stop C:\ProgramData\chocolatey\bin\minikube delete choco uninstall minikube choco uninstall kubectl 
like image 87
Rico Avatar answered Oct 06 '22 11:10

Rico