From 27041f7ca5c7d5313748e96d34f6d39c5c82d343 Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 1 Mar 2026 12:15:54 +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 7c5dd1c..58c46d7 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -17,7 +17,6 @@ spec: imagePullPolicy: Always resources: limits: - cpu: 600m memory: 200Mi requests: cpu: 20m -- 2.52.0