Fix readiness and health check path

This commit is contained in:
Christoph Petrausch
2026-02-15 22:53:35 +01:00
parent 16352d241a
commit 8a2f566a5a

View File

@@ -139,11 +139,11 @@ resources: {}
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
livenessProbe:
httpGet:
path: /
path: /metrics
port: http
readinessProbe:
httpGet:
path: /
path: /metrics
port: http
# This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/