1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00

Merge pull request #79736 from openshift-cherrypick-robot/cherry-pick-79713-to-enterprise-4.17

[enterprise-4.17] : Use of pidsLimit is deprecated as of 4.11 and new default is 4096
This commit is contained in:
Ashleigh Brennan
2024-07-30 13:20:23 -05:00
committed by GitHub

View File

@@ -15,7 +15,7 @@ To revert the changes implemented by using a `ContainerRuntimeConfig` CR, you mu
You can modify the following settings by using a `ContainerRuntimeConfig` CR:
* **PIDs limit**: Setting the PIDs limit in the `ContainerRuntimeConfig` is expected to be deprecated. If PIDs limits are required, it is recommended to use the `podPidsLimit` field in the `KubeletConfig` CR instead. The default value of the `podPidsLimit` field is `4096`.
* **PIDs limit**: Setting the PIDs limit in the `ContainerRuntimeConfig` is expected to be deprecated. If PIDs limits are required, it is recommended to use the `podPidsLimit` field in the `KubeletConfig` CR instead. The default `podPidsLimit` value is `4096` and the default `pids_limit` value is `0`. If `podPidsLimit` is lower than `pids_limit` then the effective container PIDs limit is defined by the value set in `podPidsLimit`.
+
[NOTE]
====