fix: add argocd ignore-healthcheck 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 4s

Use correct annotation 'argocd.argoproj.io/ignore-healthcheck' to
prevent Service from staying in 'Processing' state.
This commit is contained in:
2025-11-24 11:29:38 +01:00
parent d439741339
commit b43bce4afd

View File

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