← Main page

Kubernetes probes

Liveness probe

Liveness probe checks if a pod is working: if not then Kubernetes restarts the pod.

Readiness probe

Readiness probe checks if a pod is able to serve requests: if not then Kubernetes will not send requests to the service. Pod can accept traffic only if all containers are ready.