You attempt to schedule a pod but it remains 'Pending'. 'kubectl describe pod' shows the event: '0/3 nodes are available: 3 node(s) didn't match node selector.' What is the MOST likely cause?
Node selector mismatch prevents the pod from being scheduled on any node.
Why this answer
Option A is correct. The error 'didn't match node selector' indicates that the pod has a nodeSelector that does not match any node's labels. Option B would show a different event (resource pressure).
Option C would show an event about taints. Option D (PVC not bound) would show a different event.