Docker – Working of Kubernetes

Docker - Working of Kubernetes

In this topic, we will discuss the Working of Kubernetes in Docker. We will see how to install Kubernetes via kubeadm. This is a tool that helps in the installation of Kubernetes. Let’s go step by step and learn how to install Kubernetes.

Step 1 − Ensure that the Ubuntu server version you are working on is 16.04.

Step 2 − Ensure that you generate a ssh key that can be used for ssh login. You can do this using the following command.

ssh-keygen 

This will generate a key in your home folder as shown below.

Home Folder

Step 3 − Next, depending on the version of Ubuntu you have, you will need to add the relevant site to the docker.list for the apt package manager, so that it will be able to detect the Kubernetes packages from the Kubernetes site and download them accordingly.

We can do it using the following commands.

curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -  
echo "deb http://apt.kubernetes.io/ kubernetes-xenial main” | sudo tee /etc/apt/sources.list.d/docker.list

Step4 − We then issue an apt-get update to ensure all packages are downloaded on the Ubuntu server.

Issue APT Get Update

Step5 − Install the Docker package as detailed in the earlier chapters.

Step6 − Now it’s time to install Kubernetes by installing the following packages −

apt-get install –y kubelet kubeadm kubectl kubernetes-cni
Install Kubenetes
Docker Package

Step7 − Once all kubernetes packages are downloaded, it’s time to start the kubernetes controller using the following command −

kubeadm init 
kubernetes Packages

Once done, you will get a successful message that the master is up and running and nodes can now join the cluster.

In this guide, we learned about the Working of Kubernetes in Docker. To know more click here.

This Post Has 2 Comments

Leave a Reply