From 4d3bf5038e3a4f43f28cbfd743f5887cb1a91a05 Mon Sep 17 00:00:00 2001 From: Unchained Date: Tue, 21 Apr 2026 07:36:29 +0200 Subject: [PATCH] fix(storefront): bump memory limit to 1.5Gi, request to 256Mi - Fixes OOMKills from Next.js SSR memory spikes - Keeps low request for idle scaling - Limit allows 3x headroom over baseline --- k8s/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index 5d7c1e0..cb7d6cc 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -61,10 +61,10 @@ spec: resources: limits: cpu: 500m - memory: 512Mi + memory: 1.5Gi requests: cpu: 50m - memory: 128Mi + memory: 256Mi startupProbe: httpGet: path: /favicon.ico