From 2c9c79d8f1b13d7cb5083c5d605e9c9872391015 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Fri, 26 Jun 2026 23:57:27 +1000 Subject: [PATCH] fix: update UI health check paths to /ui (#202) The UI now serves under /ui (artifactapi#58). Health probes need /ui instead of /. Reviewed-on: https://git.unkin.net/unkin/argocd-apps/pulls/202 Co-authored-by: Ben Vincent Co-committed-by: Ben Vincent --- 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