What Really Happens on a Kubernetes Node (Deep Dive)
What Really Happens on a Kubernetes Node (Deep Dive): OverlayFS, containerd, Volumes, and the Hidden Mechanics Most Kubernetes explanations stop at Pods and containers. But the real story — the one that actually helps you debug, optimise, and reason about failures — happens inside the node. This article goes beyond the basics and explains: OverlayFS (and why it matters in real scenarios) containerd internals (beyond “it runs containers”) Image storage and caching Writable layers and their limitations Volume mounting mechanics (bind mounts) The kubelet’s role in orchestrating everything Linux primitives: namespaces & cgroups Where performance and problems actually come from 🧠 The Real Execution Flow When you create a Pod, Kubernetes does NOT “run a container”. ...