Skip to content

Commit a2a2896

Browse files
authored
Update pod-lifecycle.md
Default for periodSeconds field of startupProbe resource is 10 seconds. $ kubectl explain pod.spec.containers.startupProbe.periodSeconds KIND: Pod VERSION: v1 FIELD: periodSeconds <integer> DESCRIPTION: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.
1 parent 7a44e1a commit a2a2896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/concepts/workloads/pods/pod-lifecycle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ a time longer than the liveness interval would allow.
325325
If your container usually starts in more than
326326
`initialDelaySeconds + failureThreshold × periodSeconds`, you should specify a
327327
startup probe that checks the same endpoint as the liveness probe. The default for
328-
`periodSeconds` is 30s. You should then set its `failureThreshold` high enough to
328+
`periodSeconds` is 10s. You should then set its `failureThreshold` high enough to
329329
allow the container to start, without changing the default values of the liveness
330330
probe. This helps to protect against deadlocks.
331331

0 commit comments

Comments
 (0)