Skip to content

Instantly share code, notes, and snippets.

@nikhita
Created February 12, 2020 17:22
Show Gist options
  • Select an option

  • Save nikhita/7e6b83c6171c976774b4eb8ec8e85d07 to your computer and use it in GitHub Desktop.

Select an option

Save nikhita/7e6b83c6171c976774b4eb8ec8e85d07 to your computer and use it in GitHub Desktop.

Revisions

  1. nikhita created this gist Feb 12, 2020.
    29 changes: 29 additions & 0 deletions minikube-upgrade.md
    Original 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
    ```