Kubernetes - Health Checks and Probes
Given this liveness probe configuration:
livenessProbe: initialDelaySeconds: 5 periodSeconds: 10 timeoutSeconds: 3If the container starts at time 0, when will the first probe timeout occur if the probe command does not respond?
