Home > Mobile >  How do I uninstall minikube on a Mac?
How do I uninstall minikube on a Mac?

Time:09-05

I have a Mac with Apple Silicon (M1) and I have minikube installed. The installation was done following https://medium.com/@seohee.sophie.kwon/how-to-run-a-minikube-on-apple-silicon-m1-8373c248d669 by executing:

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-arm64
sudo install minikube-darwin-arm64 /usr/local/bin/minikube

How do I remove minikube?

CodePudding user response:

    minikube stop; minikube delete
    docker stop $(docker ps -aq)
    rm -r ~/.kube ~/.minikube
    sudo rm /usr/local/bin/localkube /usr/local/bin/minikube
    systemctl stop '*kubelet*.mount'
    sudo rm -rf /etc/kubernetes/
    docker system prune -af --volumes

CodePudding user response:

Have you tried to follow any online material to delete Minikube?? Test if this works for you and let me know if you face any issues.

Delete minikube on Mac

  • Related