kubernetes
DevOps interview questions tagged kubernetes, across every topic.
44 questions · 25 unlocked for you
Concepts behind "kubernetes"
The concept pages behind what these questions are testing.
Foundational
The control loop: the one idea Kubernetes is built onKubernetes controllers reconcile desired and observed state through the API. That model explains many stuck objects, while runtime operations still use direct calls to container runtimes, networking and storage systems.☸️ Containers & Kubernetes
Foundational
Requests are what the scheduler believes, limits are what the kernel enforcesTwo numbers that look like a pair are read by two different systems for two different purposes. Requests decide placement and are a claim about the future. Limits decide runtime enforcement and are a cgroup setting. Nearly every strange capacity problem in Kubernetes comes from conflating them.☸️ Containers & Kubernetes
Core
Why GPUs break the assumptions schedulers are built onGPU scheduling must account for device memory, sharing boundaries and interconnect topology. Device plugins, MIG, DRA and gang scheduling address different constraints; none makes accelerators behave like interchangeable CPU millicores.🤖 AI InfrastructureSign in
Advanced
CFS quotas and throttling: what a CPU limit really enforcesA CPU limit bounds CPU bandwidth over an accounting period; runnable work can be throttled when the group or an ancestor exhausts its quota. This concept gives the exact arithmetic, the diagnostic reading of cpu.stat, and the remediation debate that separates senior candidates.☸️ Containers & Kubernetes🔒 Premium