Skip to content

Commit ee3fd3f

Browse files
committed
fr equivalent for pr 45837
1 parent 524a513 commit ee3fd3f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,8 @@ metadata:
328328
spec:
329329
containers:
330330
- args:
331-
- /server
332-
image: registry.k8s.io/liveness
331+
- liveness
332+
image: registry.k8s.io/e2e-test-images/agnhost:2.40
333333
livenessProbe:
334334
httpGet:
335335
# lorsque "host" n'est pas défini, "PodIP" sera utilisé

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
@@ -102,7 +102,7 @@ liveness-exec 1/1 Running 1 1m
102102
## Définir une requête HTTP de liveness
103103
104104
Un autre type de liveness probe utilise une requête GET HTTP. Voici la configuration
105-
d'un Pod qui fait fonctionner un conteneur basé sur l'image `registry.k8s.io/liveness`.
105+
d'un Pod qui fait fonctionner un conteneur basé sur l'image `registry.k8s.io/e2e-test-images/agnhost`.
106106
107107
{{% codenew file="pods/probe/http-liveness.yaml" %}}
108108

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ metadata:
77
spec:
88
containers:
99
- name: liveness
10-
image: registry.k8s.io/liveness
10+
image: registry.k8s.io/e2e-test-images/agnhost:2.40
1111
args:
12-
- /server
12+
- liveness
1313
livenessProbe:
1414
httpGet:
1515
path: /healthz

0 commit comments

Comments
 (0)