summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorhaircommander <pehunt@redhat.com>2018-08-17 10:36:51 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-08-23 18:16:28 +0000
commit2a7449362f2884d9ae6a783c0ce38979d882e2cf (patch)
tree6e7b8ab33505d210201e62faba6a50f98c0a4ea7 /docs
parent697b46430a8a7c2c7231078911dcec51f0c6fab5 (diff)
downloadpodman-2a7449362f2884d9ae6a783c0ce38979d882e2cf.tar.gz
podman-2a7449362f2884d9ae6a783c0ce38979d882e2cf.tar.bz2
podman-2a7449362f2884d9ae6a783c0ce38979d882e2cf.zip
Change pause container to infra container
Signed-off-by: haircommander <pehunt@redhat.com> Closes: #1187 Approved by: mheon
Diffstat (limited to 'docs')
-rw-r--r--docs/podman-pod-create.1.md32
1 files changed, 16 insertions, 16 deletions
diff --git a/docs/podman-pod-create.1.md b/docs/podman-pod-create.1.md
index 063dbc918..1d8ce9175 100644
--- a/docs/podman-pod-create.1.md
+++ b/docs/podman-pod-create.1.md
@@ -19,14 +19,22 @@ containers added to it. The pod id is printed to STDOUT. You can then use
Path to cgroups under which the cgroup for the pod will be created. If the path is not absolute, the path is considered to be relative to the cgroups path of the init process. Cgroups will be created if they do not already exist.
-**--podidfile**=""
-
-Write the pod ID to the file
-
**--help**
Print usage statement
+**--infra**
+
+Create an infra container and associate it with the pod. An infra container is a lightweight container used to coordinate the shared kernel namespace of a pod. Default: true
+
+**--infra-command**=""
+
+The command that will be run to start the infra container. Default: "/pause"
+
+**--infra-image**=""
+
+The image that will be created for the infra container. Default: "k8s.gcr.io/pause:3.1"
+
**-l**, **--label**=[]
Add metadata to a pod (e.g., --label com.example.key=value)
@@ -39,17 +47,9 @@ Read in a line delimited file of labels
Assign a name to the pod
-**--pause**
-
-Create a pause container and associate it with the pod. A pause container is a lightweight container used to coordinate the shared kernel namespace of a pod. Default: true
-
-**--pause-command**=""
-
-The command that will be run to start the pause container. Default: "/pause"
-
-**--pause-image**=""
+**--podidfile**=""
-The image that will be created for the pause container. Default: "k8s.gcr.io/pause:3.1"
+Write the pod ID to the file
**--share**=""
@@ -69,9 +69,9 @@ for it. The name is useful any place you need to identify a pod.
# podman pod create --name test
-# podman pod create --pause=false
+# podman pod create --infra=false
-# podman pod create --pause-command /top
+# podman pod create --infra-command /top
## SEE ALSO
podman-pod(1)