From 079bed19243a7f418254097ea9b211385588fcba Mon Sep 17 00:00:00 2001 From: Ashleigh Brennan Date: Tue, 30 Jul 2024 09:13:12 -0500 Subject: [PATCH] OCPBUGS-13688: Use of pidsLimit is deprecated as of 4.11 and new default is 4096 --- modules/create-a-containerruntimeconfig-crd.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/create-a-containerruntimeconfig-crd.adoc b/modules/create-a-containerruntimeconfig-crd.adoc index 62e1a2cb85..dab1c5df6b 100644 --- a/modules/create-a-containerruntimeconfig-crd.adoc +++ b/modules/create-a-containerruntimeconfig-crd.adoc @@ -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] ====