Back to Glossary
Kubernetes

What is Readiness Probe?

A Kubernetes health check that controls when a pod starts receiving traffic.

A Readiness Probe is a health check that determines when a pod is ready to receive traffic from a Service. Until the readiness probe passes, the pod is removed from the Service's endpoint list — no traffic is sent to it. This prevents traffic from reaching pods that are still starting up (warming caches, loading models, connecting to DB). Unlike liveness probes (which restart containers), failed readiness probes just remove the pod from load balancing.

Test your knowledge of Readiness Probe and 130 other DevOps concepts