Skip to content

Commit

Permalink
fr equivalent for pr 45837
Browse files Browse the repository at this point in the history
  • Loading branch information
spurin committed Apr 13, 2024
1 parent 524a513 commit ee3fd3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions content/fr/docs/concepts/workloads/pods/pod-lifecycle.md
Expand Up @@ -328,8 +328,8 @@ metadata:
spec:
containers:
- args:
- /server
image: registry.k8s.io/liveness
- liveness
image: registry.k8s.io/e2e-test-images/agnhost:2.40
livenessProbe:
httpGet:
# lorsque "host" n'est pas défini, "PodIP" sera utilisé
Expand Down
Expand Up @@ -102,7 +102,7 @@ liveness-exec 1/1 Running 1 1m
## Définir une requête HTTP de liveness
Un autre type de liveness probe utilise une requête GET HTTP. Voici la configuration
d'un Pod qui fait fonctionner un conteneur basé sur l'image `registry.k8s.io/liveness`.
d'un Pod qui fait fonctionner un conteneur basé sur l'image `registry.k8s.io/e2e-test-images/agnhost`.
{{% codenew file="pods/probe/http-liveness.yaml" %}}
Expand Down
4 changes: 2 additions & 2 deletions content/fr/examples/pods/probe/http-liveness.yaml
Expand Up @@ -7,9 +7,9 @@ metadata:
spec:
containers:
- name: liveness
image: registry.k8s.io/liveness
image: registry.k8s.io/e2e-test-images/agnhost:2.40
args:
- /server
- liveness
livenessProbe:
httpGet:
path: /healthz
Expand Down

0 comments on commit ee3fd3f

Please sign in to comment.