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
resources = {
requests = {
cpu = "100m"
cpu = "10m"
memory = "256Mi"
}
limits = {
cpu = "300m"
memory = "512Mi"
cpu = "1"
memory = "2Gi"
}
}
}