Why it matters
K8s runs most enterprise container workloads. Understanding basics is table stakes for infrastructure work.
Advertisement
The architecture
Pod: smallest deployable unit. One or more containers sharing network + storage.
Deployment: manages replicas of a pod. Rolling updates. Rollback.
Service: stable virtual IP for a set of pods.
Advertisement
How it works end to end
Cluster: control plane (API server, scheduler, controller-manager, etcd) + nodes (kubelet + containers).
Declarative: define desired state; controllers reconcile.
Namespaces: logical separation for multi-tenancy.
ConfigMap + Secret: configuration and sensitive data.
Ingress: HTTP routing into cluster.