From d062eb874ac7bfc90f3b189c3e40ac1dc25a465d Mon Sep 17 00:00:00 2001 From: stxkxs Date: Tue, 2 Jun 2026 21:11:51 -0700 Subject: [PATCH] refactor(applicationsets): name the agent operator Deployment for the system MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The addons-agent-operator ApplicationSet set helm releaseName: operator, so the ArgoCD Application (eks-agent-platform-operator), the helm release (operator), and the resulting Deployment (operator) had three different names — and the Deployment was a bare, generic "operator" in the namespace. Set releaseName to match the Application name so Application == release == Deployment == eks-agent-platform- operator: one fully-qualified name, consistent with the namespace and image path. --- applicationsets/addons-agent-operator.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/applicationsets/addons-agent-operator.yaml b/applicationsets/addons-agent-operator.yaml index fc46593..6dae9b1 100644 --- a/applicationsets/addons-agent-operator.yaml +++ b/applicationsets/addons-agent-operator.yaml @@ -43,7 +43,10 @@ spec: targetRevision: main path: charts/operator helm: - releaseName: operator + # Matches the Application name above so Application == release == + # Deployment (eks-agent-platform-operator) — one fully-qualified name + # instead of a bare, generic "operator" Deployment in the namespace. + releaseName: eks-agent-platform-operator # Per-cluster IRSA + identity, read from the cluster Secret's labels # (account-agnostic) and annotations (account-specific, published by # cluster-bootstrap). valuesObject overrides the valueFiles below, so