From cbe66df60408eda8a264388d6c97c97c41ab413e Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 8 Dec 2024 21:08:48 +0100 Subject: [PATCH] fix(k8s): adjust resource requests for deployment Reduce CPU and memory requests from 10m to 5m and from 10Mi to 5Mi to optimize resource usage for the application deployment. This change aims to improve overall efficiency without compromising performance. --- k8s/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index 7a4166c..8245a36 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -49,8 +49,8 @@ spec: - containerPort: 80 resources: requests: - cpu: 10m - memory: 10Mi + cpu: 5m + memory: 5Mi limits: cpu: 300m memory: 300Mi