From e5a0a1d1835bae2e9dce9617972c9a91a8686afb Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Sun, 1 Mar 2026 12:15:57 +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 cf395e5..588660e 100644 --- a/k8s/deploy.yaml +++ b/k8s/deploy.yaml @@ -52,7 +52,6 @@ spec: cpu: 5m memory: 5Mi limits: - cpu: 300m memory: 300Mi ---