-
Notifications
You must be signed in to change notification settings - Fork 23
Setup Instructions
Panagiotis Roubatsis edited this page Oct 3, 2018
·
6 revisions
First download the appropriate .deb
package for your distribution from the https://www.virtualbox.org/wiki/Linux_Downloads[Virtual Box website].
Next, run the following commands to install Virtual Box on your system.
cd <download_directory>
sudo dpkg -i <downloaded_file>.deb
First download the appropriate .rpm
package for your distribution from the https://www.virtualbox.org/wiki/Linux_Downloads[Virtual Box website].
Next, run the following commands to install Virtual Box on your system.
sudo yum install kernel-devel-$(uname -r)
cd <download_directory>
sudo rpm -i <downloaded_file>.rpm
Run the following commands to download and install kubectl
.
sudo mkdir /opt/kubernetes
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
chmod +x kubectl
sudo mv kubectl /opt/kubernetes/
sudo ln -s /opt/kubernetes/kubectl /usr/local/bin/kubectl
Download the latest Minikube release from https://github.com/kubernetes/minikube/releases[Minikube's GitHub page]. Make sure to choose the minikube-linux-amd64
option.
chmod +x minikube-linux-amd64
sudo mv minikube-linux-amd64 /opt/kubernetes/
sudo ln -s /opt/kubernetes/minikube-linux-amd64 /usr/local/bin/minikube
Run the following command to start your Kubernetes cluster.
minikube start