Skip to content

Commit ab052f1

Browse files
authored
Fix typo
1 parent 5eb875c commit ab052f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ In this exercise, you create a Pod that runs a container based on the
4949
In the configuration file, you can see that the Pod has a single `Container`.
5050
The `periodSeconds` field specifies that the kubelet should perform a liveness
5151
probe every 5 seconds. The `initialDelaySeconds` field tells the kubelet that it
52-
should wait 5 second before performing the first probe. To perform a probe, the
52+
should wait 5 seconds before performing the first probe. To perform a probe, the
5353
kubelet executes the command `cat /tmp/healthy` in the target container. If the
5454
command succeeds, it returns 0, and the kubelet considers the container to be alive and
5555
healthy. If the command returns a non-zero value, the kubelet kills the container

0 commit comments

Comments
 (0)