[CI:DOCS] minor man page cleanup

Followup to #21285. I hope this is easier to review
than a re-push of that one.

Signed-off-by: Ed Santiago <santiago@redhat.com>
This commit is contained in:
Ed Santiago
2024-01-25 13:08:32 -07:00
parent fc660a22a4
commit 7dcbc75aa0
5 changed files with 9 additions and 9 deletions

View File

@ -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:
@ -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
@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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
@ -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