From 113ca5f273877f78c833a59176b3b5dbe1ee46db Mon Sep 17 00:00:00 2001 From: dahoud <41957584+DahoudG@users.noreply.github.com> Date: Wed, 22 Apr 2026 15:02:28 +0000 Subject: [PATCH] fix: health path /health/ (custom Quarkus root-path, pas /q/health/) --- values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/values.yaml b/values.yaml index 418ff6c..7a3d2cf 100644 --- a/values.yaml +++ b/values.yaml @@ -166,7 +166,7 @@ lions-app: liveness: enabled: true httpGet: - path: /q/health/live + path: /health/live port: 8080 initialDelaySeconds: 60 periodSeconds: 30 @@ -175,7 +175,7 @@ lions-app: readiness: enabled: true httpGet: - path: /q/health/ready + path: /health/ready port: 8080 initialDelaySeconds: 30 periodSeconds: 10 @@ -184,7 +184,7 @@ lions-app: startup: enabled: true httpGet: - path: /q/health/started + path: /health/started port: 8080 initialDelaySeconds: 10 periodSeconds: 10