Users Online

· Guests Online: 15

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

12_04. Setup on Linux

12_04. Setup on Linux
DevOps Courses » Docker and Kubernetes The Complete Guide 2019-7
Categories Most Recent Top Rated Popular Courses
 
Uploader Date Added Views Rating
Superadmin 31.05.17 122 No Rating
Description
12_04. Setup on Linux

<br />
<br />
These instructions were tested on a laptop with the desktop version of Linux Mint 19 Cinnamon installed. Current Ubuntu desktop version's setup should be the same. Your experience may vary if using an RHEL / Arch / Other distribution or non desktop distribution like Ubuntu server, or lightweight distributions which may omit many expected tools.<br /><br />



Install VirtualBox:<br /><br />
Find your Linux distribution and download the .deb package, using a graphical installer here should be sufficient. If you use a package manager like apt to install from your terminal, you will likely get a fairly out of date version.<br /><br />
<br /><br />
https://www.virtualbox.org/wiki/Linux_Downloads
<br /><br />
After installing, check your installation to make sure it worked:<br /><br />
<br />
VBoxManage ?version<br />
<br /><br />

<br />
As an alternative you can use (or maybe you have to use) KVM instead of VirtualBox. Here are some great instructions that can be found in this post (Thanks to Nick L. for sharing):<br /><br />
<br /><br />
https://computingforgeeks.com/install-kvm-centos-rhel-ubuntu-debian-sles-arch/

<br /><br />

Install Kubectl
In your terminal run the following:
<br /><br />
curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl <br /><br />
<br /><br />
chmod +x ./kubectl <br /><br />
<br /><br />
sudo mv ./kubectl /usr/local/bin/kubectl
<br /><br />


Check your Installation:<br /><br />

kubectl version<br />


<br /><br />
See also official docs:<br /><br />
https://kubernetes.io/docs/tasks/tools/install-kubectl/#install-kubectl-on-linux<br /><br />
<br />


Install Minikube<br /><br />
In your terminal run the following:
<br />
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube
<br /><br />
sudo install minikube /usr/local/bin<br />

<br /><br />

Check your installation:
<br /><br />
minikube version

<br /><br />

Start Minikube:
<br /><br />
minikube start
<br /><br />


See also official docs:<br /><br />

https://kubernetes.io/docs/tasks/tools/install-minikube/ <br />

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.
Render time: 0.80 seconds
10,884,210 unique visits