diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-07 14:36:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 14:36:56 +0200 |
commit | 7946628734ba7cf866fcc8445b00f7dd8d9b245c (patch) | |
tree | 5075911212f48ef5b066e79dbd727a4b643eb1f1 /docs/source/markdown/options | |
parent | ac8c1e1c22e5a2a69dc067523aa7faeeed79abdd (diff) | |
parent | 4675103c22b23de7c30ff3ae979700e90d7f3adb (diff) | |
download | podman-7946628734ba7cf866fcc8445b00f7dd8d9b245c.tar.gz podman-7946628734ba7cf866fcc8445b00f7dd8d9b245c.tar.bz2 podman-7946628734ba7cf866fcc8445b00f7dd8d9b245c.zip |
Merge pull request #15653 from edsantiago/docs_dedup_sysctl
[CI:DOCS] Man pages: refactor common options: --sysctl
Diffstat (limited to 'docs/source/markdown/options')
-rw-r--r-- | docs/source/markdown/options/sysctl.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/source/markdown/options/sysctl.md b/docs/source/markdown/options/sysctl.md new file mode 100644 index 000000000..6fc1bbebe --- /dev/null +++ b/docs/source/markdown/options/sysctl.md @@ -0,0 +1,21 @@ +#### **--sysctl**=*name=value* + +Configure namespaced kernel parameters <<at runtime|for all containers in the pod>>. + +For the IPC namespace, the following sysctls are allowed: + +- kernel.msgmax +- kernel.msgmnb +- kernel.msgmni +- kernel.sem +- kernel.shmall +- kernel.shmmax +- kernel.shmmni +- kernel.shm_rmid_forced +- Sysctls beginning with fs.mqueue.\* + +Note: <<if you use the **--ipc=host** option|if the ipc namespace is not shared within the pod>>, the above sysctls are not allowed. + +For the network namespace, only sysctls beginning with net.\* are allowed. + +Note: <<if you use the **--network=host** option|if the network namespace is not shared within the pod>>, the above sysctls are not allowed. |