A Kubernetes Cluster is a group of node or machines running together. At the highest level of Kubernetes, there exist two kinds of servers, a Master and a Worker node. These servers can be Virtual Machine(VM) or physical servers(Bare metal). Together, these servers form a Kubernetes cluster and are controlled by the services that make up the Control Plane.
If you are new to Docker & Kubernetes world, then check out our blog on Kubernetes for Beginners to get an idea about the components and concepts of Kubernetes.
In this blog, we will cover How to install and configure a three-node cluster in Kubernetes which is the first topic in Kubernetes. We have a set of Hands-on Labs that you must perform in order to learn Docker & Kubernetesand clear the CKA certification exam. Cluster Architecture, Installation & Configuration have a total weightage of 25% in the Exam.
There are 3 ways to deploy a Kubernetes cluster:
1. By deploying all the components separately.
2. Using Kubeadm.
3. Using Managed Kubernetes Services

Prerequisites For Cluster Setup
Deploying three nodes on-premises can be hard and painful, so an alternate way of doing this can be using a Cloud Platform for deploying them. You can use any Cloud Platform, here we are using Azure Cloud. Before getting on with creating a cluster make sure you have the following setup ready:
I) Create an Azure Free Account, as we will use Azure Cloud for setting up a Kubernetes Cluster.
II) Launch 3 Virtual Machines – one Master Node and 2 Worker Nodes. We are launching these VMs in different regions because in the Azure Free tier account we can’t create 3 virtual machines in a single region due to the service limit. So we are creating One Master node in US East Region and Two Worker node (worker-1, worker-2 in US Southcentral Region)
To create an Ubuntu Virtual Machine, check our blog on Create An Ubuntu VM In Azure.
III) For connecting the worker node with the master node as they are in different regions and in different Vnet, we have to do VNet Peering.
To know more about Virtual Networks, refer to our blog on azure vnet peering

IV) The Ports specified below are the default Port range for NodePort Services for Master and Worker Nodes.

Port numbers marked with * are overridable, so we have to make sure that any custom ports we provide are open.
Note: As we are creating a cluster only for testing purpose, so we can open all the Ports rather than opening only specified Port.

The specifications required for a Node:
- One or more machines running a deb/rpm-compatible Linux OS; for example Ubuntu or CentOS.
(Note: We are going to use Ubuntu in this setup.) - 8 GiB or more of RAM per machine.
- At least 4 CPUs on the machine that you use as a control-plane node.
Also Read: Kubernetes vs docker, to know the major difference between them.
Installing Docker, Kubectl, And Kubeadm Packages
After doing the above-mentioned process, we have to install some packages on our machines. These packages are:
- Docker – is a software responsible for running the containers.
- kubeadm – a CLI tool that will install and configure the various components of a cluster in a standard way.
- kubelet – a system service/program that runs on all nodes and handles node-level operations.
- kubectl – a CLI tool used for issuing commands to the cluster through its API Server.
In order to install these packages, follow the steps mentioned below on Master as well as Worker nodes:
Step 1) We have to do SSH to our virtual machines with the username and password. If you are a Linux or Mac user then use ssh command and if you are a Windows user then you can use Putty.
$ sudo su
Step 2) If you have logged in using another user, then we can switch to root user using the following command:
$ apt-get update && apt-get install-y docker.io

To Install Docker on the local system, you can check out the following blog Install Docker
Step 3) Now we will install the Docker package in our machine using the following command:
$ apt-get update && apt-get install-y docker.io

To verify if Docker is installed or not in our VMs, we can check the version of it. To do so use the following command:
$ docker --version
Step 4) We have to download packages like Kubeadm and kubectl using https, so we have to download the https package first. Use the following command for this:
$ apt-get update && apt-get install-y apt-transport-https

Also Check: Our blog post on Kubernetes Health Check. Click here
Step 5) We have to add the required GPG key to our apt-sources to authenticate the Kubernetes related packages we will install:
$ curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add

To add Kubernetes to the package manager’s list of resources, use the following command:
(Note: Type the following command carefully)
cat << EOF | sudo tee /etc/apt/sources.list.d/kubernetes.list
deb https://apt.kubernetes.io/ kubernetes-xenial main
EOF
deb https://apt.kubernetes.io/ kubernetes-xenial main

Before installing the packages, update the apt-get command:
$ apt-get update

Now we will install Kubelet, Kubeadm, and kubectl packages into our machines. Run the following command:
$ apt-get install -y kubelet kubeadm kubectl

To hold the installed packages at their installed versions, use the following command:
$ apt-mark hold kubelet kubeadm kubectl

Check Out: Our blog post on Ingress Controller, to choose the best ingress controller for Kubernetes.
Create A Kubernetes Cluster
As we have successfully installed Kubeadm, next we will create a Kubernetes cluster using the following mentioned steps:
Step 1) We have to initialize kubeadm on the master node. This command will check against the node that we have all the required dependencies. If it is passed, then it will install control plane components.
(Note: Run this command in Master Node only.)
$ kubeadm init

You will see a similar output:

If cluster initialisation has succeeded, then we will see a cluster join command. This command will be used by the worker nodes to join the Kubernetes cluster, so copy this command and save it for the future use.
Step 2) To start using the cluster, we have to set the environment variable on the master node.
To temporarily set the environment variables on the master node, run the following commands:
(Note: Every time you are starting the Master, you have to set these Environment Variables.)
$ cp /etc/kubernetes/admin.conf $HOME/
$ chown $(id -u) $HOME/admin.conf
$ export KUBECONFIG=$HOME/admin.conf

Also Check: Our previous blog post on Kubernetes deployment. Click here
Join Worker Nodes to the Kubernetes Cluster
Now our Kubernetes master node is set up, we should join Worker nodes to our cluster. Perform the following same steps on all of the worker nodes:
Step 1) SSH into the Worker node with the username and password.
$ ssh <external ip of worker node>
Step 2) Run the kubeadm join command that we have received and saved.
Note: This is above cluster command, you will get your command in your cluster so use that command not this command
$ kubeadm join 10.0.0.4:6443 --token 9amey0.szuruforpi62u1j0 \
> --discovery-token-ca-cert-hash sha256:bb3e85d5f582591aeb24321e1e58d82eaddbdd0e217ee8fc160ae56355017989
(Note: Don’t use this same command, use the command that you have received and saved while doing kubeadm init command.)

If you have forgotten to save the above received kubeadm join command, then you can create a new token and use it for joining worker nodes to the cluster.
$ kubeadm token create --print-join-command

Testing the Kubernetes Cluster
After creating the cluster and joining worker nodes, we have to make sure that everything is working properly. To see and verify the cluster status, we can use kubectl command on the master node:
Using Kubectl get nodes command, we can see the status of our Nodes (master and worker) whether they are ready or not.
$ kubectl get nodes

We have to install CNI so that pods can communicate across nodes and also Cluster DNS to start functioning. Apply Weave CNI (Container Network Interface) on the master node.
Note: If you want to know more about Network Policy, then check our blog on Kubernetes Network Policy
$ kubectl apply -f "https://cloud.weave.works/k8s/net?k8s-version=$(kubectl version | base64 | tr -d '\n')"

Wait for a few minutes and verify the cluster status by executing kubectl command on the master node and see that nodes come to the ready state.
$ kubectl get nodes

To verify the status of the system pods like coreDNS, weave-net, Kube-proxy, and all other master node system processes, use the following command:
To know more about Pods in Kubernetes, check our blog on Kubernetes Pods for Beginners.
$ kubectl get pods -n kube-system

Your output should match with the shown output above. If not, you will have to check whether you have performed all the steps correctly and on the mentioned node only.
Related Post
- Kubernetes for Beginners
- Kubernetes Architecture | An Introduction to Kubernetes Components
- Certified Kubernetes Administrator (CKA) Certification Exam: Everything You Must Know
- Certified Kubernetes Administrator (CKA): Step By Step Activity Guides/Hands-On Lab Exercise
- Kubernetes Ingress Controller Examples with Best Option