From 871882927b2732dd20682adf6455ad1a9ea8791f Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Fri, 9 Jan 2026 14:18:11 +0900 Subject: [PATCH] FIX(external-secrets): increase memory limits for webhook and certController - Increase memory from 32Mi to 64Mi to prevent OOMKilled - Remove duplicate webhook/certController sections (keep ones with affinity) --- external-secrets/helm-values.yaml | 30 ++++-------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) diff --git a/external-secrets/helm-values.yaml b/external-secrets/helm-values.yaml index cec1744..5ca7c22 100644 --- a/external-secrets/helm-values.yaml +++ b/external-secrets/helm-values.yaml @@ -13,28 +13,6 @@ resources: # cpu: removed to prevent throttling memory: 64Mi -# Webhook 설정 -webhook: - replicaCount: 2 - resources: - requests: - cpu: 2m # Reduced from 10m based on actual usage (1m) - memory: 32Mi - limits: - # cpu: removed to prevent throttling - memory: 32Mi - -# CertController 설정 -certController: - replicaCount: 2 - resources: - requests: - cpu: 2m # Reduced from 10m based on actual usage (1m) - memory: 32Mi - limits: - # cpu: removed to prevent throttling - memory: 32Mi - # 동시 실행 제한 concurrent: 3 @@ -51,10 +29,10 @@ webhook: resources: requests: cpu: 2m # Reduced from 10m based on actual usage (1m) - memory: 32Mi + memory: 64Mi limits: # cpu: removed to prevent throttling - memory: 32Mi + memory: 64Mi # Affinity - Soft Anti-Affinity to spread pods across nodes affinity: podAntiAffinity: @@ -72,10 +50,10 @@ certController: resources: requests: cpu: 2m # Reduced from 10m based on actual usage (1m) - memory: 32Mi + memory: 64Mi limits: # cpu: removed to prevent throttling - memory: 32Mi + memory: 64Mi # Affinity - Soft Anti-Affinity to spread pods across nodes affinity: podAntiAffinity: