A parks team sees pods stuck Pending and exports kubectl describe output focused on Events. Which event reason most directly explains a resource-fit scheduling failure?
Select an answer to reveal the explanation.
Short Explanation
Describe is gossip from the API—FailedScheduling is the scheduler saying no node could take the pod. Read that event before guessing about images or controllers.
Full Explanation
FailedScheduling events record why the scheduler rejected placement, often citing insufficient CPU/memory, taints, or affinity mismatches. SuccessfulCreate, Pulling, and Started describe other lifecycle stages and do not themselves explain resource-fit Pending failures. Administrators use describe Events to diagnose scheduling blockers.