How to upgrade minikube?

前端 未结 13 1173
一个人的身影
一个人的身影 2020-12-23 13:09

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

相关标签:
13条回答
  • 2020-12-23 14:05

    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. :)

    0 讨论(0)
提交回复
热议问题