apps/descheduler/config/policy.yaml
Peter Kurfer aec4d62781
All checks were successful
Renovate / renovate (push) Successful in 1m6s
feat(descheduler): tweak policy thresholds
2024-09-09 14:34:56 +02:00

26 lines
668 B
YAML

apiVersion: "descheduler/v1alpha2"
kind: "DeschedulerPolicy"
profiles:
- name: ProfileName
pluginConfig:
- name: "DefaultEvictor"
- name: "RemovePodsViolatingInterPodAntiAffinity"
- name: "RemoveDuplicates"
- name: "LowNodeUtilization"
args:
thresholds:
"cpu": 30
"memory": 30
"pods": 30
targetThresholds:
"cpu": 60
"memory": 60
"pods": 60
plugins:
balance:
enabled:
- "LowNodeUtilization"
- "RemoveDuplicates"
deschedule:
enabled:
- "RemovePodsViolatingInterPodAntiAffinity"