fix(argocd): remove conflicting server patch, params-cm handles insecure mode

This commit is contained in:
2026-05-18 00:39:43 -05:00
parent 9cd9a30fbe
commit eb93eb7352

View File

@@ -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"