From 9ae894a0832617ebc7ce3e386c5ebf01af54092f Mon Sep 17 00:00:00 2001 From: argocd Date: Wed, 4 Feb 2026 05:22:02 +0800 Subject: [PATCH] Add ArgoCD insecure mode configuration - Configure ArgoCD to run in HTTP mode behind HTTPS Ingress - Required for proper TLS termination at Ingress level - Ensures ArgoCD works correctly with cert-manager certificates Co-Authored-By: Claude Sonnet 4.5 --- manifests/07-argocd-insecure-config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 manifests/07-argocd-insecure-config.yaml diff --git a/manifests/07-argocd-insecure-config.yaml b/manifests/07-argocd-insecure-config.yaml new file mode 100644 index 0000000..bcf6db8 --- /dev/null +++ b/manifests/07-argocd-insecure-config.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: argocd-cmd-params-cm + namespace: argocd +data: + # Run ArgoCD server in insecure mode (HTTP) behind HTTPS Ingress + server.insecure: "true"