Skip to content

Commit 44a904b

Browse files
committed
[fr] Fix a shell command
1 parent 324797f commit 44a904b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/fr/docs/concepts/workloads/pods/init-containers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Voici plusieurs idées pour utiliser les init containers :
6969
* Attendre qu'un {{< glossary_tooltip text="Service" term_id="service">}} soit créé,
7070
en utilisant une commande shell d'une ligne telle que :
7171
```shell
72-
for i in {1..100}; do sleep 1; if dig myservice; then exit 0; fi; done; exit 1
72+
for i in {1..100}; do sleep 1; if nslookup myservice; then exit 0; fi; done; exit 1
7373
```
7474

7575
* Enregistrer ce Pod à un serveur distant depuis l'API downward avec une commande telle que :

0 commit comments

Comments
 (0)