Infrastructure

Readiness Probe

A Kubernetes health check that determines whether a pod is ready to receive traffic, distinct from liveness probes that check if the pod is alive. While a liveness probe failure triggers a restart, a readiness probe failure removes the pod from the Service's endpoint list without restarting it. Probes can be HTTP GET requests, TCP socket checks, or exec commands run inside the container.

관련 프로토콜

가이드에서 언급됨

관련 항목