From fb605ffa8b292f88a239c61abaf533ca9869313b Mon Sep 17 00:00:00 2001 From: "juvenal.diaz" Date: Thu, 23 Jul 2026 11:32:23 -0600 Subject: [PATCH] Increase argocd limits --- bootstrap/platform/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap/platform/main.tf b/bootstrap/platform/main.tf index 072e5c1..1713b3d 100644 --- a/bootstrap/platform/main.tf +++ b/bootstrap/platform/main.tf @@ -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" } } }