A library catalog container is still marked Running but has stopped answering requests after a deadlock. Which probe is designed to restart that wedged process?
Select an answer to reveal the explanation.
Short Explanation
If the process is alive but brain-dead, readiness just stops sending it traffic. Liveness is the nudge that says restart this container so it can recover.
Full Explanation
Liveness probes detect containers that are running but unhealthy; repeated failures cause the kubelet to restart the container according to the Pod's restartPolicy. Readiness failures only affect Service membership. Affinity rules influence scheduling placement and do not restart wedged processes.