File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ $ cat demo.yml | podman kube play -
28328352182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
284284```
285285
286- Teardown the pod and containers as described in the specified YAML file.
286+ Tear down the pod and containers as described in the specified YAML file.
287287```
288288$ podman kube play --down demo.yml
289289Pods stopped:
@@ -292,7 +292,7 @@ Pods removed:
29229252182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
293293```
294294
295- Provide multiple configmaps files as sources for environment variables within the specified pods and containers.
295+ Provide multiple configmap files as sources for environment variables within the specified pods and containers.
296296```
297297$ podman kube play demo.yml --configmap configmap-foo.yml,configmap-bar.yml
29829852182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
@@ -301,7 +301,7 @@ $ podman kube play demo.yml --configmap configmap-foo.yml --configmap configmap-
30130152182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
302302```
303303
304- Create a pod connected to two networks with a static ip.
304+ Create a pod connected to two networks with a static ip on each .
305305```
306306$ podman kube play demo.yml --network net1:ip=10.89.1.5 --network net2:ip=10.89.10.10
30730752182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Storing signatures
6767Loaded image: registry.fedoraproject.org/fedora:latest
6868```
6969
70- Create an image from stdin using a piped .
70+ Create an image from stdin using a pipe .
7171```
7272$ cat fedora.tar | podman load
7373Getting image source signatures
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ Password:
9191Login Succeeded!
9292```
9393
94- Add login credentials as a Podman Secret for the specified registry to the default authorization file .
94+ Add login credentials using a Podman secret for the password .
9595```
9696$ echo -n MySecret! | podman secret create secretname -
9797a0ad54df3c97cf89d5ca6193c
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ d0cf1f782e2ed67e8c0050ff92df865a039186237a4df24d7acba5b1fa8cc6e7
1131136b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584
114114```
115115
116- Clone and remove the specified pod to a new pod modifying its cpus.
116+ Clone and remove the specified pod to a new pod, modifying its cpus.
117117```
118118# podman pod clone --destroy --cpus=5 d0cf1
1191196b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584
Original file line number Diff line number Diff line change @@ -53,13 +53,13 @@ $ podman wait --latest
53530
5454```
5555
56- Wait up to 2 seconds the specified container to exit.
56+ Wait for the container to exit, checking every two seconds .
5757```
5858$ podman wait --interval 2s mywebserver
59590
6060```
6161
62- Wait for the specified container to exit with a failure.
62+ Wait for the container by ID. This container exits with error status 1:
6363```
6464$ podman wait 860a4b23
65651
@@ -72,7 +72,7 @@ $ podman wait mywebserver myftpserver
7272125
7373```
7474
75- Wait for does-not-exist container to exit, but do not fail if container does not exist.
75+ Wait for the named container to exit, but do not fail if the container does not exist.
7676```
7777$ podman wait --ignore does-not-exist
7878-1
You can’t perform that action at this time.
0 commit comments