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 7c5f6e0 + 52fe454 commit b30a5dfCopy full SHA for b30a5df
content/en/docs/tutorials/stateful-application/zookeeper.md
@@ -266,7 +266,7 @@ to read the data from another.
266
The command below executes the `zkCli.sh` script to write `world` to the path `/hello` on the `zk-0` Pod in the ensemble.
267
268
```shell
269
-kubectl exec zk-0 zkCli.sh create /hello world
+kubectl exec zk-0 -- zkCli.sh create /hello world
270
```
271
272
@@ -279,7 +279,7 @@ Created /hello
279
To get the data from the `zk-1` Pod use the following command.
280
281
282
-kubectl exec zk-1 zkCli.sh get /hello
+kubectl exec zk-1 -- zkCli.sh get /hello
283
284
285
The data that you created on `zk-0` is available on all the servers in the
0 commit comments