Kubernetes Internals (Part 1): What Kubernetes Is
One-line summary: Kubernetes is a control plane that reconciles desired state into running workloads across a fleet of machines.
Goal
- Explain what Kubernetes is in operational terms, not marketing terms.
- Introduce the control plane/data plane split and why reconciliation matters.
- Define the core objects you will see in every cluster.
What Kubernetes is (and isn’t)
Kubernetes manages the resources of nodes grouped into a cluster through a single API. That single control surface is what makes consistent placement, networking, and storage policy possible across many machines. In practice, this means you describe what should run and Kubernetes continuously drives the cluster toward that state.
flowchart LR
API[API Server]
subgraph Cluster[Cluster Nodes]
N1[Node 1]
N2[Node 2]
N3[Node 3]
end
API --> N1
API --> N2
API --> N3




