From cd861a75e6d3f5d1354a29c5cb2bba49caa5155f Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Tue, 21 Jul 2026 10:01:11 -0700 Subject: [PATCH] =?UTF-8?q?fix(argocd):=20raise=20repo-server=20memory=205?= =?UTF-8?q?12Mi->1Gi=20=E2=80=94=20OOMKilled=20under=20CMP+Helm=20renderin?= =?UTF-8?q?g=20caused=20chronic=20restarts,=20not-ready=20endpoint,=20and?= =?UTF-8?q?=20cluster-wide=20sync=20'no=20route=20to=20host'=20failures?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- k8s/security/ci-cd/argocd-values.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/k8s/security/ci-cd/argocd-values.yaml b/k8s/security/ci-cd/argocd-values.yaml index 38c4880..5a8ffac 100644 --- a/k8s/security/ci-cd/argocd-values.yaml +++ b/k8s/security/ci-cd/argocd-values.yaml @@ -78,10 +78,13 @@ repoServer: resources: requests: cpu: 100m - memory: 256Mi + memory: 512Mi limits: cpu: 500m - memory: 512Mi + # 512Mi OOM-killed the container under CMP + Helm rendering of ~30 apps, + # causing chronic restarts → not-ready → dropped Cilium backend → every + # app's manifest comparison failed with "no route to host". 1Gi headroom. + memory: 1Gi tolerations: - key: node-role.kubernetes.io/control-plane operator: Exists