From 1e447903aaedd56230d1e55f94a01d635f5f9cf1 Mon Sep 17 00:00:00 2001 From: andersonid Date: Mon, 6 Oct 2025 10:13:42 -0300 Subject: [PATCH] Fix: increase pod memory limits to prevent OOM kills --- k8s/deployment.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/k8s/deployment.yaml b/k8s/deployment.yaml index 37e3775..c97bb5d 100644 --- a/k8s/deployment.yaml +++ b/k8s/deployment.yaml @@ -115,11 +115,11 @@ spec: key: SERVICE_ACCOUNT_NAME resources: requests: - cpu: 50m - memory: 64Mi + cpu: 100m + memory: 128Mi limits: - cpu: 200m - memory: 256Mi + cpu: 500m + memory: 512Mi volumeMounts: - name: reports mountPath: /tmp/reports