summaryrefslogtreecommitdiff
path: root/docs/source/markdown/podman-pod-create.1.md
diff options
context:
space:
mode:
authorMatthew Heon <mheon@redhat.com>2021-09-15 13:40:16 -0400
committerMatthew Heon <mheon@redhat.com>2021-09-16 09:42:14 -0400
commit3c24d1fda2c0b0d55c963deaf13900101a40bfb3 (patch)
tree7bf335562865fb15791cb18b4c15da3b9b9015a8 /docs/source/markdown/podman-pod-create.1.md
parentfcb22e82b518bd8de31bc152b78d2cbc6ab09964 (diff)
downloadpodman-3c24d1fda2c0b0d55c963deaf13900101a40bfb3.tar.gz
podman-3c24d1fda2c0b0d55c963deaf13900101a40bfb3.tar.bz2
podman-3c24d1fda2c0b0d55c963deaf13900101a40bfb3.zip
Remove pod create options `--cpus` and `--cpuset-cpus`
These are not presently functional - we need a rewrite of how the pod cgroup is handled first. Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'docs/source/markdown/podman-pod-create.1.md')
-rw-r--r--docs/source/markdown/podman-pod-create.1.md16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/source/markdown/podman-pod-create.1.md b/docs/source/markdown/podman-pod-create.1.md
index fc7d39754..5909bdaf0 100644
--- a/docs/source/markdown/podman-pod-create.1.md
+++ b/docs/source/markdown/podman-pod-create.1.md
@@ -23,22 +23,6 @@ Add a host to the /etc/hosts file shared between all containers in the pod.
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.
-#### **--cpus**=*amount*
-
-Set the total number of CPUs delegated to the pod. Default is 0.000 which indicates that there is no limit on computation power.
-
-#### **--cpuset-cpus**=*amount*
-
-Limit the CPUs to support execution. First CPU is numbered 0. Unlike --cpus this is of type string and parsed as a list of numbers
-
-Format is 0-3,0,1
-
-Examples of the List Format:
-
-0-4,9 # bits 0, 1, 2, 3, 4, and 9 set
-0-2,7,12-14 # bits 0, 1, 2, 7, 12, 13, and 14 set
-
-
#### **--dns**=*ipaddr*
Set custom DNS servers in the /etc/resolv.conf file that will be shared between all containers in the pod. A special option, "none" is allowed which disables creation of /etc/resolv.conf for the pod.