Name | Description | Example from Deployment |
---|---|---|
initialDelaySeconds | The time the Kubelet waits to perform the first probe after the container is initiated. | The livenessProbe starts checking /livez only after 20 seconds. |
periodSeconds | The time the Kubelet should wait before performing the next health probe. | The readinessProbe checks /readyz every 5 seconds. |
failureThreshold | The number of consecutive failures allowed before the probe is marked as failed. | The startupProbe allows up to 10 failed checks before marking failure. |