Day-05 - Core architecture of Kubernetes (K8s)
Day-05
Today, I explored the core architecture of Kubernetes (K8s)
Key Highlights:
1. Control Plane Components(Master Node):
API Server: The communication hub of the cluster.
Scheduler: Decides where pods should run.
Controller Manager: Ensures workloads stay healthy and running.
etcd: Stores cluster data and state.
2. Worker Node Components:
Kubelet: Executes instructions from the control plane.
Kube-Proxy: Manages pod-to-pod networking.
Pods: The smallest deployable unit in Kubernetes.
End-to-End Flow:
A user interacts via kubectl -> API Server -> etcd -> Scheduler -> Kubelet →-> Pods
This ensures that workloads are automatically scheduled, monitored, and self-healing.
Takeaway:
Kubernetes acts as the brain of container orchestration, providing scalability, reliability, and automation — making it the backbone of modern DevOps workflows.
Read More: https://lnkd.in/dkf6RrVW
Comments
Post a Comment