Liveness Probes
Understand how to use Liveness Probes.
All command is same as Readiness Probes, but the only difference is the livenessProbe
field.
Usage of Liveness Probes
The concept of Liveness probes basically is to determine whether a container is alive or not by performing some tests. If the liveness probes are successful, then we know that container is going to run (healthy), else, it (kubelet) will restart the container (unhealthy).
Let me give you one scenario, suppose you have a container running an API server, and the API server is not responding to the requests, but the container still stay alive. In this case, the liveness probe will help you to restart the container, so that a new container can be created and the API server can start responding to the requests.
HTTP
TCP
kubelet will try to open a socket to the container on the specified port 8080
. If it can establish the connection, then the state is healthy.
exec
It will return 0 status code if the command succeed.