From e6c700b8725d5dc530680296e205cc88d4ec2913 Mon Sep 17 00:00:00 2001 From: Konrad Ohms <40577406+konrad-ohms@users.noreply.github.com> Date: Mon, 24 Jun 2024 11:48:12 +0200 Subject: [PATCH] chore: Increase memory limit of controller manager (#171) (#173) Allow up to 600Mi memory consumption, even if only 200Mi get requested upfront. Only the leader pod might exceed the 200Mi and the real amount of memory might depend on the environment, therefore adding some buffer. --- config/manager/manager.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/manager/manager.yaml b/config/manager/manager.yaml index 0f750725..7a7fa930 100644 --- a/config/manager/manager.yaml +++ b/config/manager/manager.yaml @@ -64,7 +64,7 @@ spec: resources: limits: cpu: 200m - memory: 200Mi + memory: 600Mi requests: cpu: 200m memory: 200Mi