From 400077436b208422374cd6f634d3c187cf1c3ab3 Mon Sep 17 00:00:00 2001 From: jenkins Date: Wed, 20 May 2026 17:00:33 -0300 Subject: [PATCH] monitoring(grafana): harden scheduling and readiness --- services/monitoring/helmrelease.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/services/monitoring/helmrelease.yaml b/services/monitoring/helmrelease.yaml index 54ff25bf..408dba98 100644 --- a/services/monitoring/helmrelease.yaml +++ b/services/monitoring/helmrelease.yaml @@ -327,6 +327,28 @@ spec: enabled: true size: 20Gi storageClassName: astreae + resources: + requests: + cpu: 250m + memory: 512Mi + limits: + cpu: "1" + memory: 1Gi + readinessProbe: + httpGet: + path: /api/health + port: 3000 + periodSeconds: 10 + timeoutSeconds: 5 + failureThreshold: 6 + livenessProbe: + httpGet: + path: /api/health + port: 3000 + initialDelaySeconds: 60 + periodSeconds: 10 + timeoutSeconds: 30 + failureThreshold: 10 nodeSelector: kubernetes.io/arch: arm64 node-role.kubernetes.io/worker: "true"