Last active
June 2, 2020 16:29
-
-
Save kitos9112/32a67139325d3e4a2fc3d7a41b392b3a to your computer and use it in GitHub Desktop.
Fetches the latest minikube release (x86_64 systems only) and installs it to /usr/local/bin
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 characters
#!/bin/bash | |
################################################################## | |
# This script downloads and install the latest version of minikube | |
# for x86_64 architectures | |
# curl -Ls https://gist.githubusercontent.com/kitos9112/32a67139325d3e4a2fc3d7a41b392b3a/raw/d16157f301b95659997e732df29a982088fa9eae/get-minikube.sh | bash | |
################################################################## | |
# Retrieve the latest version of minikube | |
if [[ $(uname -m) == "x86_64" ]]; then | |
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 | |
sudo install minikube-linux-amd64 /usr/local/bin/minikube | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment