Kubernetes — Probes (Liveness, Readiness, and Startup) Overview
Introduction to Types of Probes and Configure Health Checks using Probes in Kubernetes.
TL;DR:
Kubernetes provides probes (health checks) to monitor and act on the state of Pods (Containers) and to make sure only healthy Pods serve traffic. With help of Probes, we can control when a pod should be deemed started, ready for…