Skip to content

Commit

Permalink
[fr] Fix a shell command
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell committed Jul 13, 2023
1 parent 324797f commit 44a904b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/fr/docs/concepts/workloads/pods/init-containers.md
Expand Up @@ -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 :
Expand Down

0 comments on commit 44a904b

Please sign in to comment.