A pod named 'webapp' is stuck in 'Pending' state. 'kubectl describe pod webapp' shows '0/1 nodes are available: 1 Insufficient memory'. What is the most likely cause?
The pod is pending because no node can satisfy the memory request.
Why this answer
Option D is correct. The error indicates no node has enough memory to schedule the pod. Option A (image pull) would show ImagePullBackOff.
Option B (CPU) would show CPU insufficiency. Option C (OOMKilled) would only occur after the pod runs.