Kubernetes - Health Checks and Probes
Examine this readiness probe configuration:
readinessProbe:
exec:
command: ["/bin/check_ready.sh"]
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 2
successThreshold: 1
timeoutSeconds: 1
What is a likely cause if Kubernetes never marks the pod as ready?