Google Kubernetes Engine (GKE) provides a managed Kubernetes environment on Google Cloud. In this hands-on class, I created a GKE Standard cluster, explored its nodes and underlying Compute Engine VMs, deployed an NGINX Pod, created a ReplicationController, tested self-healing, and finally simulated node removal. This practical exercise helped me understand an important Kubernetes principle: Kubernetes continuously works to maintain the desired state of our applications. 1. What is a Kubernetes

Read More

Kubernetes (often abbreviated as K8s) is an open-source container orchestration system for automating the deployment, scaling, and management of containerized applications. šŸ”¹ Key Points about Kubernetes: šŸ”¹ Why is Kubernetes important? āœ… In simple words:Kubernetes is like a traffic controller and caretaker for containers. It makes sure your applications always run smoothly, scale when needed, and recover automatically if something goes wrong. šŸ”¹ Main Components of Kubernetes Architecture 1. Master

Read More