Kubernetes - Health Checks and Probes
You notice your application pod keeps restarting frequently. The liveness probe is defined as:
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 3
What is the most likely cause?