Increase argocd limits

This commit is contained in:
juvenal.diaz 2026-07-23 11:32:23 -06:00
parent 6277dfb5d2
commit fb605ffa8b
1 changed files with 3 additions and 3 deletions

View File

@ -1125,12 +1125,12 @@ resource "helm_release" "argocd" {
topologySpreadConstraints = local.argocd_component_topology_spread_constraints.controller topologySpreadConstraints = local.argocd_component_topology_spread_constraints.controller
resources = { resources = {
requests = { requests = {
cpu = "100m" cpu = "10m"
memory = "256Mi" memory = "256Mi"
} }
limits = { limits = {
cpu = "300m" cpu = "1"
memory = "512Mi" memory = "2Gi"
} }
} }
} }