Last active
March 13, 2018 19:52
-
-
Save yuvalif/b6c643ce6159f5b4fbdc06edb6bff562 to your computer and use it in GitHub Desktop.
uninstall script for minikube
This file contains 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
#!/bin/bash | |
# https://kubernetes.io/docs/getting-started-guides/minikube/ | |
# stop and delete | |
minikube stop | |
minikube delete | |
# remove local cache | |
rm -rf ~/.kube ~/.minikube | |
# this actually remove the binary | |
#sudo rm -f /usr/local/bin/minikube |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment