From 0584f55fd162532c71c3a1cf429190aa4c7a279d Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Fri, 25 Apr 2025 08:53:16 +0200 Subject: [PATCH] [SO] Adjust "small" resource limits for so-sdc-controller In "Small" setting the pod gets restarted due to CPU limits So the limits need to be adusted Issue-ID: OOM-3332 Change-Id: I5183fe646ef157ff165f093ea16da3a98907044b Signed-off-by: Andreas Geissler --- kubernetes/so/components/so-sdc-controller/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kubernetes/so/components/so-sdc-controller/values.yaml b/kubernetes/so/components/so-sdc-controller/values.yaml index f7a838a8d9..e1c67ecf39 100755 --- a/kubernetes/so/components/so-sdc-controller/values.yaml +++ b/kubernetes/so/components/so-sdc-controller/values.yaml @@ -117,14 +117,14 @@ flavor: small resources: small: limits: - cpu: "1" + cpu: "2" memory: "1.5Gi" requests: - cpu: "0.5" + cpu: "1" memory: "1.5Gi" large: limits: - cpu: "2" + cpu: "3" memory: "3Gi" requests: cpu: "1" -- 2.16.6