summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorChristian Felder <c.felder@fz-juelich.de>2020-03-26 15:12:22 +0100
committerChristian Felder <c.felder@fz-juelich.de>2020-03-27 10:00:01 +0100
commit91dbdff77e159fb5377cd57733a05c72cbd94c97 (patch)
tree2774d13e8d045e4ae8a4ec5f3c9829f8d0d391d4 /docs/source
parent90d82eb0349850521fcc53a4ddafa08e0785ebf0 (diff)
downloadpodman-91dbdff77e159fb5377cd57733a05c72cbd94c97.tar.gz
podman-91dbdff77e159fb5377cd57733a05c72cbd94c97.tar.bz2
podman-91dbdff77e159fb5377cd57733a05c72cbd94c97.zip
Add support for specifying CNI networks in podman play kube
Fixes: #5609 Signed-off-by: Christian Felder <c.felder@fz-juelich.de>
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/markdown/podman-play-kube.1.md14
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-play-kube.1.md b/docs/source/markdown/podman-play-kube.1.md
index 2367ff7fe..dd9441800 100644
--- a/docs/source/markdown/podman-play-kube.1.md
+++ b/docs/source/markdown/podman-play-kube.1.md
@@ -36,6 +36,10 @@ The [username[:password]] to use to authenticate with the registry if required.
If one or both values are not supplied, a command line prompt will appear and the
value can be entered. The password is entered without echo.
+**--network**=*cni networks*
+
+A comma-separated list of the names of CNI networks the pod should join.
+
**--quiet**, **-q**
Suppress output information when pulling images
@@ -62,8 +66,16 @@ $ podman play kube demo.yml
52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
```
+CNI network(s) can be specified as comma-separated list using ``--network``
+```
+$ podman play kube demo.yml --network cni1,cni2
+52182811df2b1e73f36476003a66ec872101ea59034ac0d4d3a7b40903b955a6
+```
+
+Please take into account that CNI networks must be created first using podman-network-create(1).
+
## SEE ALSO
-podman(1), podman-container(1), podman-pod(1), podman-generate-kube(1), podman-play(1)
+podman(1), podman-container(1), podman-pod(1), podman-generate-kube(1), podman-play(1), podman-network-create(1)
## HISTORY
December 2018, Originally compiled by Brent Baude (bbaude at redhat dot com)