• Call Us: +91 8121811675
  • | Mail Us: horizontechie27@gmail.com

Gaddiannaram Rd, Triveni Nagar, Dilsukhnagar, Hyderabad

blog

K8s is a production-grade open-source container orchestration tool developed by Google to help you manage the containerized/dockerized applications supporting multiple deployment environments like On-premise, cloud, or virtual machines.
k8s automates the deployment of your containerised images and helps the same to scale horizontally to support high level of application availability

Why K8s: What Problem Does K8S Solve?

One of the primary reasons why K8s became so popular is the ever-growing demand for businesses to support their micro service-driven architectural needs.

Microservice architecture helps companies in :
  • Independently develop and deploy their complex applications by breaking them into small scalable modules

  • Help them work in multiple small teams supporting individual application modules, to be developed and deployed with the required speed and agility

  • This desire of the companies to move from legacy monolith to Microservices has led to the creation of large containerized applications. Each container image in itself is a Microservice that needs to be managed and scaled efficiently with less overhead, this demand to handle thousands and thousands of container became a tedious task for the organization. This problem led to the evolution of K8s as one of the popular container orchestration tools.

What features Does K8s Offer?
  • Assures high availability with zero downtime

  • Highly performant and scalable

  • Reliable infrastructure to support data recovery with ease

Kubernetes cluster’s most basic architecture has two major Nodes
Master Node
Worker Node

Worker Node:

Let’s understand first how does worker nodes or slave nodes in K8s works and what are the key component of the worker nodes

  • Worker Node In K8s Cluster:
    As a developer or K8s administrator most of the time you will deal with worker nodes, whether you have to deploy your containerized app or you have to autoscale it, or you have to roll out any new app update on your production-grade server, you will often deal with worker nodes.

As this node does the actual work required by the cluster administrator or developer, it is known as worker nodes. Worker node can have one or more pods, these pods are your abstraction of a containerized application., runs these 3 key processes

Container Runtime
kubelet
kube-proxy
Container Runtime

Every Microservice module(micro-app) you deploy is packaged into a single pod that has its own container runtime. One needs to install a container runtime into each worker node in the cluster so that Pods can run there.

Some of the container runtime examples are, containerd, CRI-O, Docker

Kubelet:

kubelet is a primary node-agent of the worker node, which interacts with both node and the container in the given worker node.

The kubelet is responsible for

- Maintaining a set of pods, which are composed of one or more containers, on a local system.

- For registering a node with a Kubernetes cluster, sending events and pod status, and reporting resource utilization.

Within a Kubernetes cluster, the kubelet watches for PodSpecs via the Kubernetes API server.

A PodSpec is a YAML or JSON object that describes a pod. The kubelet takes a set of PodSpecs that are provided through various mechanisms (primarily through the API server) and ensures that the containers described in those PodSpecs are running and healthy.

The Kubelet is the primary and most important controller in Kubernetes. It’s responsible for driving the container execution layer, typically Docker.

Kube-Proxy:

K8s cluster can have multiple worker nodes and each node has multiple pods running, so if one has to access this pod, they can do so via Kube-proxy.

kube-proxy is a network proxy that runs on each node in your cluster, implementing part of the Kubernetes Service concept.

In order to access the pod via k8s services, there are certain network policies, that allow network communication to your Pods from network sessions inside or outside of your cluster. These rules are handled via kube-proxy

kube-proxy has an intelligent algorithm to forward network traffics required for pod access which minimized the overhead and makes service communication more performant

So far we have seen that these 3 processes need to be installed and running successfully within your worker nodes in-order to manage your containerized application efficiently, but the bigger question is

- Who manages these worker nodes, to ensure that they are always up and running?

- How does the K8s cluster know which pods should be scheduled and which one should be dropped or restarted?

How does the k8s cluster know the resource level requirements of each container app?

Well the answer lies in the concept of Master Node, let’s explore the same below

Master Node:

The master node is also known as a control plane that is responsible to manage worker/slave nodes efficiently. They interact with the worker node to

  • - Schedule the pods
  • - Monitor the worker nodes/Pods
  • - Start/restart the pods
  • - Manage the new worker nodes joining the cluster

Master Node Processes:

Every master nodes in the K8s cluster runs the following key processes

  • - kube-apiserver
  • - kubectl: kube-controller-manager
  • - kube-scheduler
  • - etcd
  • Let’s look into each one of the processes in detail

kube-apiserver:

    It is the main gateway to access the k8s cluster and act as the main gatekeeper for client level authentication or we can say that the kube-apiserver is the front end for the Kubernetes control plane.

    So whenever you want to Deploy any new app, Schedule any pods or, Create any new services, Query status or the health of your worker nodes


    You need to make a request to the API server of the master node which in turn validates your requests before you get access to the processes in worker nodes.

    kube-apiserver is designed to scale horizontally — that is, it scales by deploying more instances. You can run several instances of kube-apiserver and balance traffic between those instances

kube-scheduler in K8s Master Node:

    Every time as a K8s admin/developer if you want to schedule a new pod on the worker node, you need to send the request to the master API server which in turn will make a call to the Kube-scheduler process. The scheduler here will intelligently decide on which worker node this pod should be placed.

    So we can define kube-scheduler as:


    The key Control plane component that keep a watch for newly created Pods with no assigned worker node, and selects a worker node for them to be scheduled and run on.

    This decision to which worker node the newly created pod should be accommodated in based on the resource level availability of each node. Scheduler does the resource level query and makes critical scheduling decisions.

kube-controller-manager(Kubectl):

    It is one of the critical processes in a master node that monitors the status of any worker node level failures. It keeps a close watch over the event like

    Crashing of any pods in the worker node


    and, requests the scheduler to restart or reschedule any dead /failed pods, after detecting such event.

etcd in K8s Master Node:

    etcd in the master control plane is responsible to store every kind of cluster-level change in the form of key-value pairs.

    It can be easily seen as a brain of the k8s cluster which keeps the log of every minute details of changes occurring in the cluster.


    For example, if any pod crashes in the worker node and it has to be rescheduled, the same gets stored in etcd as key-value pair, also the event of pod rescheduling on the node is also logged here.

    NOTE:Application level data like DB is not stored in the etcd.

About us

Our mission is to empower students with the knowledge and skills they need to succeed in a world where DevOps principles are paramount. Whether you're a seasoned IT professional looking to upskill or a novice eager to explore the possibilities of DevOps, our institute is your bridge to a promising career in technology.