Health Check
Health check probes in Kubernetes are mechanisms to determine the health and readiness of containers running within pods. These probes help Kubernetes decide when to restart a container, remove it from service, or mark it as ready to accept traffic.
- Liveness Probes: If the container is running
- Readiness Probes : determine if it can accept traffic
- Start Up Probes : determine if the application within the container is running.