Skip to content

Commit 324797f

Browse files
authored
Merge pull request #42002 from Arhell/es-shell
[es] Fix a shell command
2 parents dc5ebf0 + 413e07e commit 324797f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ A continuación, se muestran algunas ideas sobre cómo utilizar los contenedores
7979
usando una sola linea de comando de shell:
8080

8181
```shell
82-
for i in {1..100}; do sleep 1; if dig myservice; then exit 0; fi; done; exit 1
82+
for i in {1..100}; do sleep 1; if nslookup myservice; then exit 0; fi; done; exit 1
8383
```
8484

8585
* Registrar este Pod con un servidor remoto desde la downward API con un comando como:

0 commit comments

Comments
 (0)