From 04fc7c7576255b3cc09ebcfd6b6393c3b3a1c5c5 Mon Sep 17 00:00:00 2001 From: Julia McGhee Date: Fri, 20 Mar 2026 19:33:17 +0000 Subject: [PATCH] Disable ArgoCD internal TLS to fix redirect loop behind Traefik Traefik terminates TLS, so ArgoCD server must run in insecure mode. Also update ArgoCD URL from homelab.local to coreworlds.io. --- infra/kubernetes/argocd/kustomization.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/infra/kubernetes/argocd/kustomization.yaml b/infra/kubernetes/argocd/kustomization.yaml index 60fe575..cad06a9 100644 --- a/infra/kubernetes/argocd/kustomization.yaml +++ b/infra/kubernetes/argocd/kustomization.yaml @@ -18,5 +18,15 @@ patches: metadata: name: argocd-cm data: - url: https://argocd.homelab.local + url: https://argocd.coreworlds.io application.resourceTrackingMethod: annotation + - target: + kind: ConfigMap + name: argocd-cmd-params-cm + patch: | + apiVersion: v1 + kind: ConfigMap + metadata: + name: argocd-cmd-params-cm + data: + server.insecure: "true"