Created
February 12, 2020 17:22
-
-
Save nikhita/7e6b83c6171c976774b4eb8ec8e85d07 to your computer and use it in GitHub Desktop.
Revisions
-
nikhita created this gist
Feb 12, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ ## 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 ```