Skip to content

Part 1: Kubernetes, Explained 2024: Nodes, Pods, Services, Deployments

Published: at 11:34 PMSuggest Changes

Part 1: Kubernetes, Explained in 2024: Nodes, Pods, Services, Deployments

Problem -> Solution approach

Let’s look at Kubernetes from a problem versus solution angle to better understand its origin and purpose in life.

Containerization

The first problem we want to talk about is containerization and the trend from monolith to microservices architecture. While we cannot go in depth on this subject for a digestable intro to Kubernetes, we need to recognize that this shift was foundational to the concept of Kubernetes. Adoption of microservices architecture lead to the rise in popularity of Docker, specifically for it’s ability to abstract computational consistency.

If we accept that containerization is a good way to unit-ize application instances in a microservices architecture, then a new problem arises: how do we wrangle these containers?

Orchestration

What do practitioners of containerization want across the board?

  1. High availability (no downtime)
  2. Scalability: the app loads fast and responds fast
  3. Recovery: if data is lost, infrastructure goes down, etc. the application can recover at the latest state

These needs comprise the overall goal of orchestration tools.

How does Kubernetes approach orchestration?

Let’s define the basic components of a system:

Node

i.e., a server. This can be a physical or virtual machine that runs workloads for a Kubernetes cluster. Structurally, Kubernetes operates across a cluster of Nodes. A clustet is a group of two or more such machines, one acting as a Control Plane, managing and scheduling the workloads, and the rest acting as Worker Nodes.

Simple illustration of Kubernetes Nodes in a private cloud
Simple illustration of Kubernetes Nodes in a private cloud

Pod

Smallest and most basic deployable unit, one or more containers that share the same network namespace, storage, and specs.

Virtual Network

Kubernetes comes out of the box offering a virtual IP address for each Pod. But Pods are meant to be ephemeral. When one goes out of existence and a replacement is created, the replacement gets assigned a new IP address.

Service

“Service” in Kubernetes, is a concept to address the ephemeral nature of Pods and the ability of Pods to dissociate with their equally ephemeral IP addresses. A Service can have a permanent IP address and perform one of a few different jobs:

Service functions:

Deployment

Akin to a manager, a Deployment looks after a group of containers to make sure there’s always the right number of them, they’re healthy, and they are doing their jobs.

How to use Deployments:

Let’s put it all together in an example scenario. Let’s suppose you have a frontend app and a backend app. Here’s an illustration of the components we’ve discussed so far:

Illustration of a simple Kubernetes architecture with Deployments, Pods, and Services
Illustration of a simple Kubernetes architecture with Deployments, Pods, and Services

Note that we’ve captured the relationship of the Kubernetes concepts here, but not so much the functionality. So let’s break down the scenario further.

You have two containerized applications that we can more or less treat like black boxes so long as we understand their networking requirements and purpose in the overall system. The backend might be some kind of REST API. The frontend may be a React application. You define Deployments for each, specifying the target number of instances of each.

You define ClusterIP Services to hold on to static IP addresses for each application within the cluster, even if instances go down and must be recreated.

Then, the frontend needs to be accessible to the public web so an additional Service is created, a LoadBalancer service that makes use of your cloud provider’s load balancer technology and exposes an external IP address into the cluster.

In part 2, we’ll discuss ConfigMap and Secret.

👉🏼 Continue to part 2


Previous Post
Part 2: Kubernetes, Explained 2024: Secrets and ConfigMaps
Next Post
Left on Read: Exploring the Surge in Recruiter Ghosting