Skip to content

Instantly share code, notes, and snippets.

@kitos9112
Last active June 2, 2020 16:29
Show Gist options
  • Save kitos9112/32a67139325d3e4a2fc3d7a41b392b3a to your computer and use it in GitHub Desktop.
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
#!/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