Files
homelab/cluster/platform/argocd/argocd-server-patch.yaml
2026-05-17 20:44:31 -05:00

24 lines
781 B
YAML

# ------------------------------------------------------------------------------
# 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).
# ------------------------------------------------------------------------------
apiVersion: apps/v1
kind: Deployment
metadata:
name: argocd-server
namespace: argocd
spec:
template:
spec:
containers:
- name: argocd-server
command:
- argocd-server
- --insecure