From 03acab784a079928a9a610362c8b64e53bff809a Mon Sep 17 00:00:00 2001 From: Ryan Blundon Date: Sun, 17 May 2026 22:24:26 -0500 Subject: [PATCH] fix(argocd): use args not command for --insecure flag --- cluster/platform/argocd/argocd-server-patch.yaml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/cluster/platform/argocd/argocd-server-patch.yaml b/cluster/platform/argocd/argocd-server-patch.yaml index 4769a7a..052ac51 100644 --- a/cluster/platform/argocd/argocd-server-patch.yaml +++ b/cluster/platform/argocd/argocd-server-patch.yaml @@ -1,12 +1,6 @@ # ------------------------------------------------------------------------------ -# ArgoCD Server — Insecure Mode Patch -# -# When TLS is terminated at the Gateway (not at argocd-server itself), -# argocd-server must run in --insecure mode. Without this, it tries to -# do double TLS and the Gateway connection fails. -# -# This patches the argocd-server Deployment to add the --insecure flag. -# Applied as part of the argocd-config Application (same path/namespace). +# ArgoCD Server — Insecure Mode +# Enables --insecure flag so TLS is terminated at the Gateway, not argocd-server # ------------------------------------------------------------------------------ apiVersion: apps/v1 kind: Deployment @@ -18,6 +12,5 @@ spec: spec: containers: - name: argocd-server - command: - - argocd-server + args: - --insecure