Skip to content

Node

Medium — good to knowCI/CD & DevOps

ELI5 — The Vibe Check

In Kubernetes, a Node is a physical or virtual machine in the cluster — one of the workers that actually runs your pods. If Kubernetes is a restaurant chain, nodes are the individual restaurant locations. Each node has a certain amount of CPU and memory, and Kubernetes figures out which pods to place where.

Real Talk

A Kubernetes Node is a worker machine (VM or physical server) that runs pods. Each node has a kubelet (agent communicating with the control plane), a container runtime (like containerd), and kube-proxy (for networking). The control plane schedules workloads onto nodes based on resource availability.

When You'll Hear This

"The node is out of memory — some pods got evicted." / "Add more nodes to the cluster to handle increased load."

Made with passive-aggressive love by manoga.digital. Powered by Claude.