From b43bce4afdb31e75e870ccb4af775e77298d6270 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 Service Use correct annotation 'argocd.argoproj.io/ignore-healthcheck' to prevent Service from staying in 'Processing' state. --- argocd/deployment.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/argocd/deployment.yaml b/argocd/deployment.yaml index 0b1f9c1..f8601df 100644 --- a/argocd/deployment.yaml +++ b/argocd/deployment.yaml @@ -58,11 +58,15 @@ kind: Service metadata: name: django namespace: vorgabenui + annotations: + argocd.argoproj.io/ignore-healthcheck: "true" spec: type: ClusterIP selector: app: django ports: - - port: 8000 + - name: http + protocol: TCP + port: 8000 targetPort: 8000