From a621904f56161ed322690450b7a3d259f2743799 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Fri, 26 Jun 2026 23:48:59 +1000 Subject: [PATCH] fix: update UI health check paths to /ui The UI now serves under /ui (artifactapi#58), so liveness/readiness probes need to hit /ui instead of /. --- apps/base/artifactapi/ui-deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/base/artifactapi/ui-deployment.yaml b/apps/base/artifactapi/ui-deployment.yaml index a698c27..7622c7d 100644 --- a/apps/base/artifactapi/ui-deployment.yaml +++ b/apps/base/artifactapi/ui-deployment.yaml @@ -31,7 +31,7 @@ spec: livenessProbe: failureThreshold: 3 httpGet: - path: / + path: /ui port: http scheme: HTTP initialDelaySeconds: 15 @@ -41,7 +41,7 @@ spec: readinessProbe: failureThreshold: 3 httpGet: - path: / + path: /ui port: http scheme: HTTP initialDelaySeconds: 5 -- 2.47.3