Skip to content

Instantly share code, notes, and snippets.

@jdial1996
jdial1996 / probe_config.md
Last active May 5, 2025 11:41
probe_blog_post
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.