fix(descheduler): stick to default policy
All checks were successful
Renovate / renovate (push) Successful in 1m8s

This commit is contained in:
Peter 2024-09-09 14:19:22 +02:00
parent dc9cde4588
commit aa65996145
Signed by: prskr
GPG key ID: F56BED6903BC5E37
2 changed files with 0 additions and 28 deletions

View file

@ -3,4 +3,3 @@ kind: Kustomization
resources:
- https://github.com/kubernetes-sigs/descheduler/kubernetes/deployment?ref=v0.30.1
- resources/policy.yaml

View file

@ -1,27 +0,0 @@
apiVersion: "descheduler/v1alpha2"
kind: "DeschedulerPolicy"
metadata:
name: DefaultPolicy
profiles:
- name: ProfileName
pluginConfig:
- name: "RemoveDuplicates"
- name: "LowNodeUtilization"
args:
thresholds:
"cpu": 20
"memory": 20
targetThresholds:
"cpu": 50
"memory": 50
- name: "HighNodeUtilization"
args:
thresholds:
"cpu": 70
"memory": 80
plugins:
balance:
enabled:
- "RemoveDuplicates"
- "LowNodeUtilization"
- "HighNodeUtilization"