Kubernetes - Health Checks and Probes
Given this readiness probe configuration in a pod spec:
readinessProbe:
httpGet:
path: /ready
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
What happens if the HTTP GET request to /ready returns status 503?