From 2e6b37f46ca27c1ff2ba367f172f83b33b8b4eb4 Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Mon, 24 Nov 2025 11:29:38 +0100 Subject: [PATCH] fix: add argocd ignore-healthcheck annotation to Ingress Prevents Ingress from staying in 'Processing' state by ignoring ArgoCD's health check that waits for load balancer IP/hostname. --- argocd/deployment.yaml | 4 +++- argocd/ingress.yaml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/argocd/deployment.yaml b/argocd/deployment.yaml index 0b1f9c1..28d2348 100644 --- a/argocd/deployment.yaml +++ b/argocd/deployment.yaml @@ -63,6 +63,8 @@ spec: selector: app: django ports: - - port: 8000 + - name: http + protocol: TCP + port: 8000 targetPort: 8000 diff --git a/argocd/ingress.yaml b/argocd/ingress.yaml index bb1ba62..0edf450 100644 --- a/argocd/ingress.yaml +++ b/argocd/ingress.yaml @@ -3,6 +3,8 @@ kind: Ingress metadata: name: django namespace: vorgabenui + annotations: + argocd.argoproj.io/ignore-healthcheck: "true" spec: rules: - host: vorgabenportal.knowyoursecurity.com