Merge pull request from Arhell/fa-shell

[fr] Fix a shell command
pull/42027/head
Kubernetes Prow Robot 2023-07-13 23:43:49 -07:00 committed by GitHub
commit 1c28e2d882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
content/fr/docs/concepts/workloads/pods

View File

@ -69,7 +69,7 @@ Voici plusieurs idées pour utiliser les init containers :
* Attendre qu'un {{< glossary_tooltip text="Service" term_id="service">}} soit créé,
en utilisant une commande shell d'une ligne telle que :
```shell
for i in {1..100}; do sleep 1; if dig myservice; then exit 0; fi; done; exit 1
for i in {1..100}; do sleep 1; if nslookup myservice; then exit 0; fi; done; exit 1
```
* Enregistrer ce Pod à un serveur distant depuis l'API downward avec une commande telle que :