You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/application-health-about.adoc
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ initialization is complete.
51
51
You can configure several fields to control the behavior of a probe:
52
52
53
53
* `initialDelaySeconds`: The time, in seconds, after the container starts before the probe can be scheduled. The default is 0.
54
-
* `periodSeconds`: The delay, in seconds, between performing probes. The default is `10`. This value must be greater than `timeoutSeconds`.
54
+
* `periodSeconds`: The delay, in seconds, between performing probes. The default is `10`. This value must be greater than `timeoutSeconds`.
55
55
* `timeoutSeconds`: The number of seconds of inactivity after which the probe times out and the container is assumed to have failed. The default is `1`. This value must be lower than `periodSeconds`.
56
56
* `successThreshold`: The number of times that the probe must report success after a failure to reset the container status to successful. The value must be `1` for a liveness probe. The default is `1`.
57
57
* `failureThreshold`: The number of times that the probe is allowed to fail. The default is 3. After the specified attempts:
@@ -171,7 +171,7 @@ spec:
171
171
<4> The type of probe, here a container command probe.
172
172
<5> The command line to execute inside the container.
173
173
<6> How often in seconds to perform the probe.
174
-
<7> The number of number of consecutive successes needed to show success after a failure.
174
+
<7> The number of consecutive successes needed to show success after a failure.
175
175
<8> The number of times to try the probe after a failure.
176
176
177
177
.Sample readiness probe and liveness probe with a TCP socket test in a deployment
0 commit comments