2 Commits

Author SHA1 Message Date
dd3c94f7fc Update docker.io/postgres Docker tag to v18
Some checks failed
renovate/stability-days Updates have met minimum release age requirement
lint-test-helm / lint-helm (pull_request) Failing after 33s
lint-test-docker / lint-docker-compose (pull_request) Successful in 37s
2025-12-07 02:11:04 +00:00
d8c94b19e9 add high resource threashold
Some checks failed
lint-test-helm / lint-helm (push) Failing after 15s
renovate / renovate (push) Successful in 1m35s
render-manifests-push / render-manifests-push (push) Successful in 1m50s
2025-12-06 20:09:27 -06:00
2 changed files with 14 additions and 3 deletions

View File

@@ -39,16 +39,27 @@ descheduler:
- name: RemovePodsViolatingNodeTaints - name: RemovePodsViolatingNodeTaints
- name: RemovePodsViolatingInterPodAntiAffinity - name: RemovePodsViolatingInterPodAntiAffinity
- name: RemovePodsViolatingTopologySpreadConstraint - name: RemovePodsViolatingTopologySpreadConstraint
- name: "HighNodeUtilization"
args:
thresholds:
cpu : 80
memory: 80
pods: 140
evictableNamespaces:
exclude:
- "kube-system"
evictionModes:
- "OnlyThresholdingResources"
- name: LowNodeUtilization - name: LowNodeUtilization
args: args:
thresholds: thresholds:
cpu: 30 cpu: 30
memory: 30 memory: 30
pods: 100 pods: 90
targetThresholds: targetThresholds:
cpu: 60 cpu: 60
memory: 40 memory: 40
pods: 150 pods: 100
plugins: plugins:
balance: balance:
enabled: enabled:

View File

@@ -19,7 +19,7 @@ services:
- /dev/net/tun:/dev/net/tun - /dev/net/tun:/dev/net/tun
postgresql: postgresql:
image: docker.io/postgres:17.7-alpine3.21 image: docker.io/postgres:18.1-alpine3.21
container_name: gitea-postgres container_name: gitea-postgres
env_file: env_file:
- .env - .env