โ˜ธ๏ธ Kubernetes Architecture โ€“ A Beginner-Friendly Guide

Apurva GargoteApurva Gargote
3 min read

๐Ÿ“Œ What is Kubernetes?

Kubernetes (K8s) is an open-source platform that automates the deployment, scaling, and management of containerized applications.

It helps developers and DevOps teams run applications efficiently across multiple environments on-premise or in the cloud.

๐Ÿ”น Quick Facts about Kubernetes

โœ… Developed by Google and later donated to the Cloud Native Computing Foundation (CNCF).
โœ… Inspired by Googleโ€™s internal cluster management system, Borg.
โœ… Why "K8s"? The 8 represents the number of letters between K and s in Kubernetes โ†’ K8s.


๐ŸŽฏ Why Use Kubernetes? (Key Benefits)

โœ… Automated Scaling โ€“ Adjusts the number of running containers based on traffic.
โœ… Self-Healing โ€“ Restarts failed containers, replaces them, and reschedules on healthy nodes.
โœ… Load Balancing โ€“ Distributes traffic evenly across containers.
โœ… Service Discovery โ€“ Helps services find and communicate with each other.
โœ… Declarative Configuration โ€“ Uses YAML/JSON files to define infrastructure.
โœ… Multi-Cloud Support โ€“ Works on AWS, Azure, GCP, or on-premises.



๐Ÿ— Kubernetes Architecture

Kubernetes follows a Master-Worker Node Architecture, where the Control Plane(Master) manages the Worker Nodes.

๐Ÿ“Œ Main Components

1] Control Plane (Master Node) โ€“ The "Brain" of Kubernetes

  • Manages the overall cluster.

  • Ensures workloads run where needed.

  • Main Responsibilities

    โœ… Schedules workloads on worker nodes.
    โœ… Handles cluster-wide decisions.
    โœ… Manages communication between components.

2] Worker Nodes โ€“ The Machines Running Applications

  • Handle the actual execution of applications.

3] kubectl โ€“ The Command-Line Tool

  • Used to interact with Kubernetes.

  • Sends instructions to the API Server.


๐Ÿ–ฅ Control Plane Components

Manages the entire cluster, ensuring apps run as expected.

๐Ÿ”น API Server ๐ŸŒ โ€“ The entry point for all requests, like a city hall processing permits.
๐Ÿ”น Scheduler ๐Ÿ“ โ€“ Assigns workloads (pods) to worker nodes, like a dispatcher.
๐Ÿ”น Controller Manager โš™๏ธ โ€“ Watches over the cluster, fixing issues automatically.
๐Ÿ”น etcd ๐Ÿ›ข โ€“ The memory, storing all cluster configurations.

๐Ÿ— Worker Nodes (The Workforce ๐Ÿ’ช)

These are the machines where actual applications run.

๐Ÿ”น Kubelet ๐Ÿ”น โ€“ Ensures containers run properly, like a site supervisor.
๐Ÿ”น Kube Proxy ๐Ÿ”น โ€“ Handles networking, ensuring smooth communication.
๐Ÿ”น CNI ๐ŸŒ โ€“ Manages IP addresses and connections between pods.

๐ŸŽฎ kubectl (Command-Line Interface)

  • Installed on the user's machine.

  • Interacts with the API Server to manage Kubernetes clusters.

  • Common commands:
    ๐Ÿ”น kubectl apply โ€“ Deploy apps
    ๐Ÿ”น kubectl get pods โ€“ View running applications
    ๐Ÿ”น kubectl delete โ€“ Remove applications


๐Ÿ”„ Difference Between kubectl and kubelet

Featurekubectl ๐Ÿ–ฅ (Command Tool)kubelet ๐Ÿ”— (Worker Agent)
DefinitionCLI tool to interact with the cluster.An agent running on worker nodes.
RoleSends commands to the API Server.Ensures containers are running.
LocationInstalled on a user's machine.Runs on each worker node.
UsageUsed for deploying, inspecting, and managing apps.Communicates with the Control Plane.

๐ŸŒ The Role of the API Server

The API Server is the heart of Kubernetes. It serves as the main gateway for all communication inside the cluster.

๐Ÿ“Œ What Does the API Server Do?

โœ… Accepts requests from kubectl, UI, or other tools.
โœ… Validates and processes those requests.
โœ… Stores cluster configurations in etcd.
โœ… Acts as the single source of truth for the cluster.


0
Subscribe to my newsletter

Read articles from Apurva Gargote directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Apurva Gargote
Apurva Gargote

๐Ÿ‘จโ€๐Ÿ’ป Last-year student diving deep into DevOps, Cloud Engineering, and Infrastructure Automation. Passionate about building scalable, efficient, and secure systems. Letโ€™s connect and build something amazing! ๐Ÿš€