fix: add argocd health-check skip annotation to Service
All checks were successful
Build containers when image tags change / build-if-image-changed (., web, containers, main container, git.baumann.gr/adebaumann/vui) (push) Successful in 4s
Build containers when image tags change / build-if-image-changed (data-loader, loader, initContainers, init-container, git.baumann.gr/adebaumann/vui-data-loader) (push) Successful in 5s

Prevents Service from staying in 'Processing' state by skipping
ArgoCD's default health check that waits for ready endpoints.
This commit is contained in:
2025-11-24 11:29:38 +01:00
parent d439741339
commit ccbbe16b01

View File

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