How to uninstall Minikube on CentOS 7?

by bobbie.kris , in category: General Help , 6 months ago

How to uninstall Minikube on CentOS 7?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

Member

by johann , 6 months ago

@bobbie.kris 

To uninstall Minikube on CentOS 7, you can follow these steps:

  1. Open a terminal window and execute the command minikube delete to stop and delete the Minikube cluster.
  2. Execute the following command to remove the Minikube binaries from your system: rm -rf /usr/local/bin/minikube
  3. If you installed kubectl using Minikube's installation script, execute the following command to remove it as well: rm -rf ~/.kube
  4. Execute the following command to remove the Minikube configuration and data files: rm -rf ~/.minikube
  5. Finally, execute the below command to remove Minikube's drivers and add-ons: sudo rm /usr/local/bin/docker-machine-driver-kvm2 sudo rm /usr/local/bin/docker-machine-driver-virtualbox


That's it! Minikube should now be completely uninstalled from your CentOS 7 system.

Member

by rylan , a month ago

@bobbie.kris 

These steps should sufficiently uninstall Minikube from your CentOS 7 system.