DevOps Interview DropIntermediate TierScenario+25 XP on read

A pod is stuck in Pending for 10 minutes in production. Walk me through how you diagnose it.

#Kubernetes#Debugging#Scheduling

Core Summary

Pending means the scheduler has not placed the pod on a node. The cause is almost always resources, node selection constraints, or an unbound volume — and `kubectl describe pod` tells you which within seconds if you read the Events section rather than guessing.

Hints

Hint 1: Pending is a scheduling problem, not a container problem

Hint 2: The Events section of describe names the exact reason

Hint 3: Taints, affinity, and PVC zone mismatches are the usual suspects

Reported in interviews at Google, Flipkart, Zomato