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.
2 parents 1f281f1 + 4fe4dd6 commit 88b1e22Copy full SHA for 88b1e22
content/ja/docs/concepts/workloads/pods/init-containers.md
@@ -52,7 +52,7 @@ Initコンテナを活用する方法について、いくつかのアイデア
52
53
* シェルコマンドを使って単一の{{< glossary_tooltip text="Service" term_id="service">}}が作成されるのを待機する。
54
```shell
55
- 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
56
```
57
58
* 以下のようなコマンドを使って下位のAPIからPodの情報をリモートサーバに登録する。
0 commit comments