Category: Kubernetes, CKA, ReplicaSet, Labels, Selectors Introduction One of the biggest improvements of ReplicaSet over the old ReplicationController is its more expressive label selectors. ReplicationController supports only simple equality-based selectors such as: ReplicaSet introduces set-based selectors, allowing you to create much more flexible selection rules using matchExpressions. In this hands-on…

In this blog, I will demonstrate: What is ReplicationController? A ReplicationController (RC) ensures that a specified number of Pod replicas are always running. If a Pod crashes or is deleted accidentally, Kubernetes automatically creates another Pod. Responsibilities Lab-1: Create a Single Pod Create an nginx Pod. Output Check the Pod.…

A Kubernetes cluster consists of two main components: The recommended upgrade order is: In this tutorial, we will upgrade a Kubernetes cluster from v1.35.1 to v1.35.2 using kubeadm. Kubernetes Cluster Architecture Prerequisites Before starting the upgrade, ensure that: Current Cluster Version Example Output Part 1 β€” Upgrading the Control Plane…

Level: Beginner β†’ IntermediateCategory: Kubernetes | DevOps | CKA | DockerAuthor: Sumit Bera πŸ“š Introduction Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications. Before learning Deployments, Services, ReplicaSets, or Ingress, you should first understand Pods, because every application in Kubernetes runs…

🌐 Introduction Kubernetes is the most popular container orchestration platform used by companies worldwide. As a CKA (Certified Kubernetes Administrator) candidate, one of the most important skills is building a Kubernetes cluster from scratch. In this lab, we will: βœ… Create a Kubernetes Cluster using Kubeadmβœ… Install Containerd Runtimeβœ… Configure…

A Beginner-Friendly Guide to Docker Containers on AWS EC2 In today’s cloud-native world, Docker Containers have completely changed the way applications are developed, deployed, and managed. Containers are lightweight, fast, portable, and incredibly efficient compared to traditional virtual machines. In this blog, we will learn: ✨ What Docker is✨ Important…