Kubernetes - Health Checks and Probes
Consider this
startupProbe configuration:
startupProbe:
exec:
command: ["test", "-f", "/tmp/ready"]
failureThreshold: 5
periodSeconds: 3
What happens if the file /tmp/ready does not exist during startup?