How to upgrade minikube?

2020-02-16 11:52发布

I had installed minikube a few months ago and wanted to upgrade as newer versions are available.

I am unable to find out how to upgrade minikube. I see a feature request for an upgrade command here - https://github.com/kubernetes/minikube/issues/1171

I tried to then uninstall minikube and hit another brickwall again. I don't see a command to uninstall minikube. The information that came closest to this was not very helpful - https://github.com/kubernetes/minikube/issues/1043

I guess we need ways to upgrade these (at least once every 6 months or so).

9条回答
狗以群分
2楼-- · 2020-02-16 12:12
minikube delete
sudo rm -rf ~/.minikube

re-install minikube and it should work

查看更多
一夜七次
3楼-- · 2020-02-16 12:17

This should do the trick.

brew cask reinstall minikube
查看更多
等我变得足够好
4楼-- · 2020-02-16 12:20

if you are using Windows machine and Chocolatey package manager -

Step 1: run PowerShell as administrator

Step 2: run following command choco upgrade minikube

More on chocolatey https://chocolatey.org/

查看更多
叼着烟拽天下
5楼-- · 2020-02-16 12:26

Before reinstall minikube (OS X), check the following:

  • Make sure that you have brew updated:

    brew update
    
  • Make sure that you already have cask installed:

    brew cask install minikube --verbose
    

Finally, execute the following command in the same directory you've installed minikube previously (usually /usr/local/bin/):

brew cask reinstall minikube

If you see an output similar to this:

Error: It seems there is already a Binary at '/usr/local/bin/minikube'; not linking.

  • Remove the existing binary:

    rm /usr/local/bin/minikube
    

Now, you should able to reinstall (upgrade) minikube. :)

查看更多
家丑人穷心不美
6楼-- · 2020-02-16 12:28

In order to upgrade in Windows, type:

minikube start

The following is the output you will get (make sure you are connected to internet):

Here is a newer version of Minikube available (v0.28.0). Download it here: https://github.com/kubernetes/minikube/releases/tag/v0.28.0

if you don't get the above message then first run minikube config set WantUpdateNotification true then do, minikube start

Before that, remove all the Minikube links from the system:

  1. Remove the previous installation path.
  2. From this folder, remove c:\Users\<user-name>\ .kube folder.
查看更多
beautiful°
7楼-- · 2020-02-16 12:33

Process to update:

  • Minikube is an executable: Re-install minikube is an upgrade.
  • Optionally you can remove ~/.minikube which will make minikube completely re-initialize and also update your kubernetes version (if a new version has been made available for minikube).
查看更多
登录 后发表回答