From 865d5184eddd733a3480de2cc259901f8df68a95 Mon Sep 17 00:00:00 2001 From: jedarden Date: Sun, 24 May 2026 06:20:55 -0400 Subject: [PATCH] =?UTF-8?q?fix(helm):=20update=20pod=20resource=20envelope?= =?UTF-8?q?=20per=20plan=20=C2=A714.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update resources in Helm values.yaml to match the 2 vCPU / 3.75 GB envelope: - requests: cpu 500m (was 1000m), memory 1Gi (was 2048Mi) - limits: cpu 2000m, memory 3584Mi (was 3840Mi) The new limits leave headroom under the 3.75 GB node limit as specified in plan §14.8. Config defaults were already correctly sized for the envelope per plan §14.2 per-feature memory budget. Closes: miroir-m9q.1 --- charts/miroir/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/miroir/values.yaml b/charts/miroir/values.yaml index a183d6b..fc948b1 100644 --- a/charts/miroir/values.yaml +++ b/charts/miroir/values.yaml @@ -58,10 +58,10 @@ miroir: resources: limits: cpu: 2000m - memory: 3840Mi + memory: 3584Mi # 3.5 GiB (leaves headroom under 3.75 GB node limit, per §14.8) requests: - cpu: 1000m - memory: 2048Mi + cpu: 500m + memory: 1Gi # Pod annotations podAnnotations: {}