From eb93eb7352471ba336f7cd6c9177619e6943c42e Mon Sep 17 00:00:00 2001 From: Ryan Blundon Date: Mon, 18 May 2026 00:39:43 -0500 Subject: [PATCH] fix(argocd): remove conflicting server patch, params-cm handles insecure mode --- .../platform/argocd/argocd-server-patch.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 cluster/platform/argocd/argocd-server-patch.yaml diff --git a/cluster/platform/argocd/argocd-server-patch.yaml b/cluster/platform/argocd/argocd-server-patch.yaml deleted file mode 100644 index 8d9c829..0000000 --- a/cluster/platform/argocd/argocd-server-patch.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# ------------------------------------------------------------------------------ -# ArgoCD Server — Insecure Mode -# Enables insecure mode via environment variable so TLS is terminated -# at the Gateway, not at argocd-server itself. -# Using env var instead of args to avoid tini entrypoint conflict. -# ------------------------------------------------------------------------------ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: argocd-server - namespace: argocd -spec: - template: - spec: - containers: - - name: argocd-server - env: - - name: ARGOCD_SERVER_INSECURE - value: "true"