01Walk me through everything that happens between kubectl apply and a running pod.▼medium★ EssentialNewGoogleMetaRed Hat2 repliesunlockedThe single most common Kubernetes interview question, and the one where a vague answer is most obvious. Every stage you name is a place the interviewer can ask you to debug.Open full answer →
18You updated a ConfigMap ten minutes ago and production still serves the old value. Explain how Kubernetes propagates configuration.▼mediumNewAtlassianGitLabWalmart Global Tech○ sign inThree propagation mechanisms live inside this one question and only one of them is automatic. Most candidates promise instant reloads; the kubelet has never promised that to anyone.Open full answer →
26Walk me through what the kubelet does between PodScheduled and a running container. Why do nodes flap NotReady while pods keep serving?▼expert★ EssentialNewGoogleRed HatDatadog◆ premiumThe kubelet is a local reconcile loop with its own event stream, probe workers and eviction brain. Staff-level candidates can narrate it and explain why Ready status can reflect either reported health failure or missing heartbeats.Open full answer →
28Your control plane pods were never scheduled by the scheduler. Explain static pods and why kubeadm leans on them.▼hardNewRed HatGoogleAmazon & AWS◆ premiumEvery control plane component depends on the API server, so who starts the API server? The bootstrap paradox sits at the heart of every cluster, and the kubelet plus a directory of files is the accepted way out.Open full answer →
46Worker nodes slowly fill their disks until DiskPressure appears. How does the kubelet decide what to clean up?▼easyNewDatadogUberNVIDIA◆ premiumTwo cleanup mechanisms hide behind one taint: image garbage collection removes unreferenced images by LRU at threshold crossings, while eviction kills pods. Candidates who conflate them fail this question quietly.Open full answer →