Skip to content

Instantly share code, notes, and snippets.

@nikhita
Created February 12, 2020 17:22
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikhita/7e6b83c6171c976774b4eb8ec8e85d07 to your computer and use it in GitHub Desktop.
Save nikhita/7e6b83c6171c976774b4eb8ec8e85d07 to your computer and use it in GitHub Desktop.
How to upgrade minikube to the latest version in Linux.

Find the current version

$ minikube version
minikube version: v1.7.1

Check if there are newer versions available

$ minikube update-check
CurrentVersion: v1.7.1
LatestVersion: v1.7.2

Update to latest version

 curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
   && sudo install minikube-linux-amd64 /usr/local/bin/minikube

Check new minikube version

$ minikube version
minikube version: v1.7.2
commit: 50d543b5fcb0e1c0d7c27b1398a9a9790df09dfb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment