From d359a891e7e2ce392bd22411367b9ef4f0a68ab2 Mon Sep 17 00:00:00 2001 From: Jan Chaloupka Date: Thu, 15 Aug 2024 15:07:20 +0200 Subject: [PATCH] README: drop v1alpha1 descheduler policy mention --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f769660702..65f3e0eb20 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ to move already running pods to some other nodes for various reasons: * The original scheduling decision does not hold true any more, as taints or labels are added to or removed from nodes, pod/node affinity requirements are not satisfied any more. * Some nodes failed and their pods moved to other nodes. -* New nodes are added to clusters. +* New nodes are added to clusters.https://groups.google.com/g/kubernetes-sig-scheduling Consequently, there might be several pods scheduled on less desired nodes in a cluster. Descheduler, based on its policy, finds pods that can be moved and evicts them. Please @@ -115,8 +115,6 @@ See the [user guide](docs/user-guide.md) in the `/docs` directory. ## Policy, Default Evictor and Strategy plugins -**⚠️ v1alpha1 configuration is still supported, but deprecated (and soon will be removed). Please consider migrating to v1alpha2 (described bellow). For previous v1alpha1 documentation go to [docs/deprecated/v1alpha1.md](docs/deprecated/v1alpha1.md) ⚠️** - The Descheduler Policy is configurable and includes default strategy plugins that can be enabled or disabled. It includes a common eviction configuration at the top level, as well as configuration from the Evictor plugin (Default Evictor, if not specified otherwise). Top-level configuration and Evictor plugin configuration are applied to all evictions. ### Top Level configuration @@ -506,7 +504,7 @@ key=value matches an excludedTaints entry, the taint will be ignored. For example, excludedTaints entry "dedicated" would match all taints with key "dedicated", regardless of value. excludedTaints entry "dedicated=special-user" would match taints with key "dedicated" and value "special-user". -If a list of includedTaints is provided, a taint will be considered if and only if it matches an included key **or** key=value from the list. Otherwise it will be ignored. Leaving includedTaints unset will include any taint by default. +If a list of includedTaints is provided, a taint will be considered if and only if it matches an included key **or** key=value from the list. Otherwise it will be ignored. Leaving includedTaints unset will include any taint by default. **Parameters:**