Skip to content

Commit

Permalink
Merge pull request containers#21370 from edsantiago/manpage_minor
Browse files Browse the repository at this point in the history
[CI:DOCS] minor man page cleanup
  • Loading branch information
openshift-merge-bot[bot] authored Jan 26, 2024
2 parents 36c7789 + 7dcbc75 commit 51c1140
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/source/markdown/podman-kube-play.1.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ $ cat demo.yml | podman kube play -
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
```

Teardown the pod and containers as described in the specified YAML file.
Tear down the pod and containers as described in the specified YAML file.
```
$ podman kube play --down demo.yml
Pods stopped:
Expand All @@ -292,7 +292,7 @@ Pods removed:
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
```

Provide multiple configmaps files as sources for environment variables within the specified pods and containers.
Provide multiple configmap files as sources for environment variables within the specified pods and containers.
```
$ podman kube play demo.yml --configmap configmap-foo.yml,configmap-bar.yml
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
Expand All @@ -301,7 +301,7 @@ $ podman kube play demo.yml --configmap configmap-foo.yml --configmap configmap-
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
```

Create a pod connected to two networks with a static ip.
Create a pod connected to two networks with a static ip on each.
```
$ podman kube play demo.yml --network net1:ip=10.89.1.5 --network net2:ip=10.89.10.10
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
Expand Down
2 changes: 1 addition & 1 deletion docs/source/markdown/podman-load.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Storing signatures
Loaded image: registry.fedoraproject.org/fedora:latest
```

Create an image from stdin using a piped.
Create an image from stdin using a pipe.
```
$ cat fedora.tar | podman load
Getting image source signatures
Expand Down
2 changes: 1 addition & 1 deletion docs/source/markdown/podman-login.1.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Password:
Login Succeeded!
```

Add login credentials as a Podman Secret for the specified registry to the default authorization file.
Add login credentials using a Podman secret for the password.
```
$ echo -n MySecret! | podman secret create secretname -
a0ad54df3c97cf89d5ca6193c
Expand Down
2 changes: 1 addition & 1 deletion docs/source/markdown/podman-pod-clone.1.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ d0cf1f782e2ed67e8c0050ff92df865a039186237a4df24d7acba5b1fa8cc6e7
6b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584
```

Clone and remove the specified pod to a new pod modifying its cpus.
Clone and remove the specified pod to a new pod, modifying its cpus.
```
# podman pod clone --destroy --cpus=5 d0cf1
6b2c73ff8a1982828c9ae2092954bcd59836a131960f7e05221af9df5939c584
Expand Down
6 changes: 3 additions & 3 deletions docs/source/markdown/podman-wait.1.md.in
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ $ podman wait --latest
0
```

Wait up to 2 seconds the specified container to exit.
Wait for the container to exit, checking every two seconds.
```
$ podman wait --interval 2s mywebserver
0
```

Wait for the specified container to exit with a failure.
Wait for the container by ID. This container exits with error status 1:
```
$ podman wait 860a4b23
1
Expand All @@ -72,7 +72,7 @@ $ podman wait mywebserver myftpserver
125
```

Wait for does-not-exist container to exit, but do not fail if container does not exist.
Wait for the named container to exit, but do not fail if the container does not exist.
```
$ podman wait --ignore does-not-exist
-1
Expand Down

0 comments on commit 51c1140

Please sign in to comment.