File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,7 @@ $ cat demo.yml | podman kube play -
283
283
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
284
284
```
285
285
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.
287
287
```
288
288
$ podman kube play --down demo.yml
289
289
Pods stopped:
@@ -292,7 +292,7 @@ Pods removed:
292
292
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
293
293
```
294
294
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.
296
296
```
297
297
$ podman kube play demo.yml --configmap configmap-foo.yml,configmap-bar.yml
298
298
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
@@ -301,7 +301,7 @@ $ podman kube play demo.yml --configmap configmap-foo.yml --configmap configmap-
301
301
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
302
302
```
303
303
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 .
305
305
```
306
306
$ podman kube play demo.yml --network net1:ip=10.89.1.5 --network net2:ip=10.89.10.10
307
307
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Storing signatures
67
67
Loaded image: registry.fedoraproject.org/fedora:latest
68
68
```
69
69
70
- Create an image from stdin using a piped .
70
+ Create an image from stdin using a pipe .
71
71
```
72
72
$ cat fedora.tar | podman load
73
73
Getting image source signatures
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ Password:
91
91
Login Succeeded!
92
92
```
93
93
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 .
95
95
```
96
96
$ echo -n MySecret! | podman secret create secretname -
97
97
a0ad54df3c97cf89d5ca6193c
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ d0cf1f782e2ed67e8c0050ff92df865a039186237a4df24d7acba5b1fa8cc6e7
113
113
6b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584
114
114
```
115
115
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.
117
117
```
118
118
# podman pod clone --destroy --cpus=5 d0cf1
119
119
6b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584
Original file line number Diff line number Diff line change @@ -53,13 +53,13 @@ $ podman wait --latest
53
53
0
54
54
```
55
55
56
- Wait up to 2 seconds the specified container to exit.
56
+ Wait for the container to exit, checking every two seconds .
57
57
```
58
58
$ podman wait --interval 2s mywebserver
59
59
0
60
60
```
61
61
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:
63
63
```
64
64
$ podman wait 860a4b23
65
65
1
@@ -72,7 +72,7 @@ $ podman wait mywebserver myftpserver
72
72
125
73
73
```
74
74
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.
76
76
```
77
77
$ podman wait --ignore does-not-exist
78
78
-1
You can’t perform that action at this time.
0 commit comments