How to upgrade minikube?

前端 未结 13 1174
一个人的身影
一个人的身影 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 13:55

    Just try brew upgrade minikube

    0 讨论(0)
  • 2020-12-23 13:57

    First, unlink the existing minikube from /usr/local/bin then reinstall:

    $ sudo rm -rf /usr/local/bin/minikube    # unlink existing minikube
    
    $ brew update                            # update brew itself
    $ brew cask reinstall minikube           # reinstall latest minikube
    
    0 讨论(0)
  • 2020-12-23 13:57

    An updated way is to use this:

    brew cask upgrade minikube
    
    0 讨论(0)
  • 2020-12-23 13:59

    As of early 2020, and based on the guidance provided by this answer, minikube is no more available as a cask. You need to run:

    brew install minikube
    
    0 讨论(0)
  • 2020-12-23 14:00

    Minikube is no longer available in cask and calling brew cask while performing install, upgrade, or reinstall is deprecated! Use the below syntax instead:

    Make sure brew is updated:

    brew update
    

    Then, to install, use:

    brew install minikube
    

    To upgrade, use:

    brew upgrade minikube
    

    To reinstall, use:

    brew reinstall minikube 
    
    0 讨论(0)
  • 2020-12-23 14:01
    brew upgrade minikube
    

    Just upgrade minikube with brew

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