Skip to content

Instantly share code, notes, and snippets.

View vahidhedayati's full-sized avatar

Vahid Hedayati vahidhedayati

View GitHub Profile
@vahidhedayati
vahidhedayati / incept-minikube.sh
Created November 1, 2018 09:37 — forked from osowski/incept-minikube.sh
Install Minikube, Kubectl, and Virtualbox on Ubuntu
#Installing VirtualBox
echo "Installing VirtualBox........................"
sudo apt-get install virtualbox
#Installing kubectl https://kubernetes.io/docs/getting-started-guides/kubectl/
echo "Installing kubectl..........................."
wget https://storage.googleapis.com/kubernetes-release/release/v1.4.4/bin/linux/amd64/kubectl
chmod +x kubectl
sudo mv kubectl /usr/local/bin/kubectl