summaryrefslogtreecommitdiff
path: root/docs/source
diff options
context:
space:
mode:
authorCharlie Doern <cdoern@redhat.com>2022-07-25 10:21:14 -0400
committerMatthew Heon <matthew.heon@pm.me>2022-07-26 14:46:12 -0400
commitc85722eb9f552f2456d33589a1417264369a6366 (patch)
tree2e055a356eadd8c992766cdd4168ebb0293c9719 /docs/source
parentc3e0f8ebef13e107b179fb6cf867ca8902f3761a (diff)
downloadpodman-c85722eb9f552f2456d33589a1417264369a6366.tar.gz
podman-c85722eb9f552f2456d33589a1417264369a6366.tar.bz2
podman-c85722eb9f552f2456d33589a1417264369a6366.zip
pod create --share none should not create infra
for podman pod create, when we are not sharing any namespaces there is no point for the infra container. This is especially true since resources have also been decoupled from the container recently. handle this on the cmd level so that we can still create infra if set explicitly resolves #15048 Signed-off-by: Charlie Doern <cdoern@redhat.com>
Diffstat (limited to 'docs/source')
-rw-r--r--docs/source/markdown/podman-pod-create.1.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-pod-create.1.md b/docs/source/markdown/podman-pod-create.1.md
index f6af4daa4..843aed357 100644
--- a/docs/source/markdown/podman-pod-create.1.md
+++ b/docs/source/markdown/podman-pod-create.1.md
@@ -303,7 +303,7 @@ Note: Labeling can be disabled for all containers by setting label=false in the
#### **--share**=*namespace*
-A comma-separated list of kernel namespaces to share. If none or "" is specified, no namespaces will be shared. The namespaces to choose from are cgroup, ipc, net, pid, uts. If the option is prefixed with a "+" then the namespace is appended to the default list, otherwise it replaces the default list. Defaults matches Kubernetes default (ipc, net, uts)
+A comma-separated list of kernel namespaces to share. If none or "" is specified, no namespaces will be shared and the infra container will not be created unless expiclity specified via **--infra=true**. The namespaces to choose from are cgroup, ipc, net, pid, uts. If the option is prefixed with a "+" then the namespace is appended to the default list, otherwise it replaces the default list. Defaults matches Kubernetes default (ipc, net, uts)
#### **--share-parent**