From ccbbe16b01a03d75b2fdc13c8e11a5a146136430 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 health-check skip annotation to Service Prevents Service from staying in 'Processing' state by skipping ArgoCD's default health check that waits for ready endpoints. --- argocd/deployment.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/argocd/deployment.yaml b/argocd/deployment.yaml index 0b1f9c1..8f1b991 100644 --- a/argocd/deployment.yaml +++ b/argocd/deployment.yaml @@ -58,11 +58,15 @@ kind: Service metadata: name: django namespace: vorgabenui + annotations: + argocd.argoproj.io/health-check: skip spec: type: ClusterIP selector: app: django ports: - - port: 8000 + - name: http + protocol: TCP + port: 8000 targetPort: 8000