Home » Kubernetes

Kubernetes

K8s: Worker Nodes

Kubernetes worker nodes are crucial for running application workloads. They contain three main components: the kubelet, the container runtime, and kube-proxy. Here’s a detailed look at each of these components and their roles within the Kubernetes ecosystem. Kubelet The kubelet is the primary Kubernetes agent running on each node within a cluster, including both worker […]

K8s: Worker Nodes Read More »

K8s: Control Plane Nodes

On the terminology front, we used to call Control Plane Nodes masters. However, Kubernetes now follows the guidelines of the inclusive naming initiative and is removing any potentially harmful language from the project. So, if you see old documents or references to Kubernetes masters, they are talking about control plane nodes.Control plane nodes are the

K8s: Control Plane Nodes Read More »

Kubernetes: Architecture

Introduction In this article, we will read about major components of both Kubernetes as a cluster and how it manages apps. We’ll start with the infrastructure bits first, like the control plane nodes and the workers. Then we’ll switch back and we’ll look at the bits of Kubernetes that we use to deploy and manage

Kubernetes: Architecture Read More »

Kubernetes: What and Why?

what is Kubernetes and why the heck do we have it? If your legacy apps had tens or hundreds of VMs, there is a solid chance your modern microservices apps are going to have thousands of containers. And if that is the case, you need some help managing them. That’s where Kubernetes steps in. Another

Kubernetes: What and Why? Read More »

Scroll to Top