A cluster administrator notices that a Deployment's pods are not receiving traffic as expected. The Service selector matches the pod labels. What is a possible cause?
Readiness probe determines if a pod should receive traffic. Failing removes pod from Service endpoints.
Why this answer
Service can only forward traffic to pods that are ready (i.e., pass readiness probes). If readiness probe fails, pod is removed from Service endpoints.