From cd8dbdd1e2e2661fbee35246755d62a7203a8a3c Mon Sep 17 00:00:00 2001 From: Jane Liu L Date: Wed, 23 Feb 2022 09:14:18 +0800 Subject: [PATCH] remove MostRequestedPriority from doc since already deprecated --- README.md | 2 +- docs/user-guide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8ee162bd3..389ac4520 100644 --- a/README.md +++ b/README.md @@ -274,7 +274,7 @@ under utilized frequently or for a short period of time. By default, `numberOfNo This strategy finds nodes that are under utilized and evicts pods from the nodes in the hope that these pods will be scheduled compactly into fewer nodes. Used in conjunction with node auto-scaling, this strategy is intended to help trigger down scaling of under utilized nodes. -This strategy **must** be used with the scheduler strategy `MostRequestedPriority`. The parameters of this strategy are +This strategy **must** be used with the scheduler scoring strategy `MostAllocated`. The parameters of this strategy are configured under `nodeResourceUtilizationThresholds`. The under utilization of nodes is determined by a configurable threshold `thresholds`. The threshold diff --git a/docs/user-guide.md b/docs/user-guide.md index 48de16d91..baf87b7e5 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -118,7 +118,7 @@ strategies: #### Balance low utilization nodes Using `HighNodeUtilization`, descheduler will rebalance the cluster based on memory by evicting pods -from nodes with memory utilization lower than 20%. This should be used along with scheduler strategy `MostRequestedPriority`. +from nodes with memory utilization lower than 20%. This should be use `NodeResourcesFit` with the `MostAllocated` scoring strategy based on these [doc](https://kubernetes.io/docs/reference/scheduling/config/#scheduling-plugins). The evicted pods will be compacted into minimal set of nodes. ```