Skip to content

Instantly share code, notes, and snippets.

@abdennebi
Last active September 16, 2018 12:56
Show Gist options
  • Save abdennebi/fb4cb307c440b37f8edb1d986f998db4 to your computer and use it in GitHub Desktop.
Save abdennebi/fb4cb307c440b37f8edb1d986f998db4 to your computer and use it in GitHub Desktop.
Install Minikube on Ubuntu

1 - Install Virtualbox

sudo apt install virtualbox-qt

2 - Install Minikube

curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.18.0/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

3 - Install kubectl

curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.6.0/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment