Skip to content

Commit 17199b8

Browse files
authored
Merge pull request #33818 from Arhell/update-fr
[fr] updated configure-liveness-readiness-startup-probes.md
2 parents aa915c1 + 892da02 commit 17199b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/fr/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
@@ -37,7 +37,7 @@ Le champ `periodSeconds` spécifie que le Kubelet doit effectuer un check de liv
3737
Au démarrage, le conteneur exécute cette commande :
3838

3939
```shell
40-
/bin/sh -c "touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600"
40+
/bin/sh -c "touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600"
4141
```
4242

4343
Pour les 30 premières secondes de la vie du conteneur, il y a un fichier `/tmp/healthy`.

content/fr/examples/pods/probe/exec-liveness.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
args:
1212
- /bin/sh
1313
- -c
14-
- touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600
14+
- touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600
1515
livenessProbe:
1616
exec:
1717
command:

0 commit comments

Comments
 (0)