A Deployment’s Pods stay Pending or fail image pulls. Which kubectl view best surfaces the Events explaining scheduling or image errors?
Select an answer to reveal the explanation.
Short Explanation
When a Pod won’t start, the story is usually in Events—‘FailedScheduling,’ ‘ImagePullBackOff,’ and friends. kubectl describe pod puts those Events front and center. Read them before you start changing unrelated cluster knobs.
Full Explanation
kubectl describe prints detailed resource status including recent Events from the control plane and kubelet. Those Events commonly explain Pending (scheduling constraints) and image pull failures. etcd WAL inspection, kubeconfig-only views, and random node labels do not replace reading Pod Events for application troubleshooting.