Created
November 10, 2023 13:21
-
-
Save Codes-Lab/006d0f7c37a3100ae80bf51c2cca3fe5 to your computer and use it in GitHub Desktop.
Stop and Remove minikube from Windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# powershell elevated privilages | |
minikube stop | |
minikube delete | |
# Delete the .minikube and .kube directories under user | |
C:\users\{user}\.minikube (rm $HOME/.minikube) | |
C:\users\{user}\.kube (rm $HOME/.kube) | |
# If one has installed it via chocolatey | |
minikube stop | |
minikube delete | |
choco uninstall minikube | |
choco uninstall kubectl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment