Liveness Checks (Kubernetes)
Kubernetes can use a function called a livenessProbe to help identify unhealthy pods or pods that are having issues. The below livenessProbe uses a httpGet to check for response codes between 200 and 400. The probe waits 3 seconds (initialDelaySeconds) before starting. The probe checks for a response every 3 seconds (periodSeconds). The probe flags […]
