📄️ Overview
What is Kubernetes?
📄️ Kubernetes Master Node
Before Anything I talk about Master, look at below diagram on what a Cluster looks like, do not worry about the stuff inside that I will be anyways explaining moving further
📄️ kubernetes Nodes
A node in a cluster consisting of three things -
📄️ Declarative Manifesto
K8s operates on the Declarative Model
📄️ Pods
What is a Pod?
📄️ Service
We know that one Pod is given one IP and we also know now that a Pod is mortal. I mean it can die if it goes down forever.
📄️ Deployment - Compute
Pods don't self heal or scale or do any other good stuff. To fulfil that gap, we wrap our pods in a High-level controller called Deployment(A Compute). I still am a little confused about the Computes but for now, let's assume that Deployment wrapped around a Pod is different than the Deployment controller present in Control Plane/Master Node