Skip to content

Instantly share code, notes, and snippets.

@Codes-Lab
Created November 10, 2023 13:21
Show Gist options
  • Save Codes-Lab/006d0f7c37a3100ae80bf51c2cca3fe5 to your computer and use it in GitHub Desktop.
Save Codes-Lab/006d0f7c37a3100ae80bf51c2cca3fe5 to your computer and use it in GitHub Desktop.
Stop and Remove minikube from Windows 10
# 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