From d8084e8b391b09ea551c521d65f6c3bc8aae68dc Mon Sep 17 00:00:00 2001 From: zhifei92 Date: Thu, 11 Jul 2024 16:05:36 +0800 Subject: [PATCH] update README about maxNoOfPodsToEvictTotal --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 19baadcf5..ae99c3845 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,7 @@ These are top level keys in the Descheduler Policy that you can use to configure | `nodeSelector` |`string`| `nil` | limiting the nodes which are processed. Only used when `nodeFit`=`true` and only by the PreEvictionFilter Extension Point | | `maxNoOfPodsToEvictPerNode` |`int`| `nil` | maximum number of pods evicted from each node (summed through all strategies) | | `maxNoOfPodsToEvictPerNamespace` |`int`| `nil` | maximum number of pods evicted from each namespace (summed through all strategies) | +| `maxNoOfPodsToEvictTotal` |`int`| `nil` | maximum number of pods evicted per rescheduling cycle (summed through all strategies) | ### Evictor Plugin configuration (Default Evictor) @@ -159,6 +160,7 @@ kind: "DeschedulerPolicy" nodeSelector: "node=node1" # you don't need to set this, if not set all will be processed maxNoOfPodsToEvictPerNode: 5000 # you don't need to set this, unlimited if not set maxNoOfPodsToEvictPerNamespace: 5000 # you don't need to set this, unlimited if not set +maxNoOfPodsToEvictTotal: 5000 # you don't need to set this, unlimited if not set profiles: - name: ProfileName pluginConfig: