PERF(grafana): optimize cpu requests based on

- actual usage from grafa...
- external-secrets: 20m → 5m (actual: 1m)
- external-secrets-webhook: 10m → 2m (actual: 1m)
- external-secrets-cert: 10m → 2m (actual: 1m)
- cnpg: 100m → 5m (actual: 2m)
- haproxy-ingress: 100m → 15m (actual: 9-10m)
This commit is contained in:
2025-12-26 11:46:37 +09:00
parent 100b7be198
commit 861a5e97d7

View File

@@ -4,7 +4,7 @@
# 리소스 제한 # 리소스 제한
resources: resources:
requests: requests:
cpu: 20m cpu: 5m # Reduced from 20m based on actual usage (1m)
memory: 64Mi memory: 64Mi
limits: limits:
# cpu: removed to prevent throttling # cpu: removed to prevent throttling
@@ -14,7 +14,7 @@ resources:
webhook: webhook:
resources: resources:
requests: requests:
cpu: 10m cpu: 2m # Reduced from 10m based on actual usage (1m)
memory: 32Mi memory: 32Mi
limits: limits:
# cpu: removed to prevent throttling # cpu: removed to prevent throttling
@@ -24,7 +24,7 @@ webhook:
certController: certController:
resources: resources:
requests: requests:
cpu: 10m cpu: 2m # Reduced from 10m based on actual usage (1m)
memory: 32Mi memory: 32Mi
limits: limits:
# cpu: removed to prevent throttling # cpu: removed to prevent throttling