From 60a0d04319f0475db38ceef051f8946bdc01359d Mon Sep 17 00:00:00 2001 From: Marija Musa Date: Wed, 20 May 2026 00:20:00 +0200 Subject: [PATCH] fix: reduce fastapi resource limits --- manifests/app/deployment.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/manifests/app/deployment.yaml b/manifests/app/deployment.yaml index a929d06..3a83f1e 100644 --- a/manifests/app/deployment.yaml +++ b/manifests/app/deployment.yaml @@ -52,3 +52,10 @@ spec: port: 8000 initialDelaySeconds: 15 periodSeconds: 5 + resources: + requests: + cpu: "25m" + memory: "64Mi" + limits: + cpu: "50m" + memory: "128Mi"