Kubernetes

Explain readiness probes

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

readiness probes used by Kubelet to know when a container is ready to start running, accepting traffic.

For example, a readiness probe can be to connect port 8080 on a container. Once Kubelet manages to connect it, the Pod is marked as ready

You can read more about it in kubernetes.io