k8s - livenessProbe vs readinessProbe
问题 Consider a pod which has a healthcheck setup via a http endpoint /health at port 80 and it takes almost 60 seconds to be actually ready & serve the traffic. readinessProbe: httpGet: path: /health port: 80 initialDelaySeconds: 60 livenessProbe: httpGet: path: /health port: 80 Questions: Is my above config correct for the given requirement? Does liveness probe start working only after the pod becomes ready ? In other words, I assume readiness probe job is complete once the POD is ready. After