Files
infrastructure/clusters/cl01tl/manifests/descheduler/ConfigMap-descheduler.yaml
gitea-bot 14ec2f7ddd Automated Manifest Update (#5140)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow.

### Details
- **Trigger**: `pull_request` by `@alexlebens`
- **Commit**: `5c9cfc0` (on `5c9cfc0c8948631232da6b34fd2422cd6a6b6aeb`)
- **Charts Updated**: `actual,argo-workflows,argocd,audiobookshelf,authentik,backrest,bazarr,blocky,cloudnative-pg,code-server,coredns,dawarich,democratic-csi-synology-iscsi,descheduler`

Reviewed-on: #5140
Co-authored-by: gitea-bot <gitea-bot@alexlebens.net>
Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
2026-03-26 01:39:36 +00:00

64 lines
1.7 KiB
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: descheduler
namespace: descheduler
labels:
app.kubernetes.io/name: descheduler
helm.sh/chart: descheduler-0.35.1
app.kubernetes.io/instance: descheduler
app.kubernetes.io/version: "0.35.1"
app.kubernetes.io/managed-by: Helm
data:
policy.yaml: |
apiVersion: "descheduler/v1alpha2"
kind: "DeschedulerPolicy"
profiles:
- name: default
pluginConfig:
- args:
evictDaemonSetPods: false
evictLocalStoragePods: false
ignorePvcPods: true
name: DefaultEvictor
- name: RemoveDuplicates
- args:
nodeAffinityType:
- requiredDuringSchedulingIgnoredDuringExecution
name: RemovePodsViolatingNodeAffinity
- name: RemovePodsViolatingNodeTaints
- name: RemovePodsViolatingInterPodAntiAffinity
- name: RemovePodsViolatingTopologySpreadConstraint
- args:
evictableNamespaces:
exclude:
- kube-system
evictionModes:
- OnlyThresholdingResources
thresholds:
cpu: 80
memory: 80
pods: 90
name: HighNodeUtilization
- args:
targetThresholds:
cpu: 50
memory: 50
pods: 60
thresholds:
cpu: 20
memory: 20
pods: 20
name: LowNodeUtilization
plugins:
balance:
enabled:
- RemoveDuplicates
- RemovePodsViolatingTopologySpreadConstraint
- LowNodeUtilization
deschedule:
enabled:
- RemovePodsViolatingNodeTaints
- RemovePodsViolatingNodeAffinity
- RemovePodsViolatingInterPodAntiAffinity