diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-08-10 10:20:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 10:20:45 +0000 |
commit | c4a35313c93b4384766af914bd1241bb77ebdbe5 (patch) | |
tree | 3f8ae6fd22ad1065d4df83ab6f717cf7497f6ca7 /docs/source/markdown/options/cgroups.md | |
parent | 84502fc1447867aba66ea6725e22bb57cddce42c (diff) | |
parent | 2bcee9f627b2cd1e3fe588b581aff05821f5841d (diff) | |
download | podman-c4a35313c93b4384766af914bd1241bb77ebdbe5.tar.gz podman-c4a35313c93b4384766af914bd1241bb77ebdbe5.tar.bz2 podman-c4a35313c93b4384766af914bd1241bb77ebdbe5.zip |
Merge pull request #15260 from edsantiago/docs_dedup_continued
Man pages: refactor common options
Diffstat (limited to 'docs/source/markdown/options/cgroups.md')
-rw-r--r-- | docs/source/markdown/options/cgroups.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/source/markdown/options/cgroups.md b/docs/source/markdown/options/cgroups.md new file mode 100644 index 000000000..0dbbb15f3 --- /dev/null +++ b/docs/source/markdown/options/cgroups.md @@ -0,0 +1,10 @@ +#### **--cgroups**=*how* + +Determines whether the container will create CGroups. + +Default is **enabled**. + +The **enabled** option will create a new cgroup under the cgroup-parent. +The **disabled** option will force the container to not create CGroups, and thus conflicts with CGroup options (**--cgroupns** and **--cgroup-parent**). +The **no-conmon** option disables a new CGroup only for the **conmon** process. +The **split** option splits the current CGroup in two sub-cgroups: one for conmon and one for the container payload. It is not possible to set **--cgroup-parent** with **split**. |