From 0552af64779f242084b64922cc078e0238c93bac Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 1 Mar 2026 12:15:58 +0100 Subject: [PATCH] fix(k8s): remove CPU limits to resolve KubeCPUOvercommit alert Remove cpu from resource limits while keeping memory limits and all requests intact. CPU limits cause unnecessary throttling and overcommit alerts when actual usage is far below limits. --- k8s/deploy.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/k8s/deploy.yaml b/k8s/deploy.yaml index 53c80bd..9d38b29 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -60,7 +60,6 @@ spec: cpu: 10m memory: 10Mi limits: - cpu: 300m memory: 300Mi ---