In Kubernetes Kubernetes Health Check Probes
, what happens if timeoutSeconds
exceeds periodSeconds
? For example:
initialDelaySeconds: 10
periodSeconds: 5
timeoutSeconds: 10
successThreshold: 1
failureThreshold: 3
When will the Pod "fail"?
initialDelaySeconds
+ (periodSeconds
*failureThreshold
); orinitialDelaySeconds
+ (MAX
(periodSeconds
,timeoutSeconds
) *failureThreshold
);
Same question applies for when the Pod succeeds.