We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9c88e7 commit c6ff7aaCopy full SHA for c6ff7aa
content/en/docs/concepts/workloads/pods/init-containers.md
@@ -83,7 +83,7 @@ Here are some ideas for how to use init containers:
83
* Wait for a {{< glossary_tooltip text="Service" term_id="service">}} to
84
be created, using a shell one-line command like:
85
```shell
86
- 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
87
```
88
89
* Register this Pod with a remote server from the downward API with a command like:
0 commit comments