From 1652734a83cffaf1bee67973214535c83411fa73 Mon Sep 17 00:00:00 2001 From: Max batleforc Date: Fri, 28 Jun 2024 04:13:56 +0200 Subject: [PATCH] fix: healthcheck on docs.json --- chart/templates/Deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chart/templates/Deployment.yaml b/chart/templates/Deployment.yaml index e19e3e1..5f42255 100644 --- a/chart/templates/Deployment.yaml +++ b/chart/templates/Deployment.yaml @@ -108,13 +108,13 @@ spec: mountPath: "/appdata" livenessProbe: httpGet: - path: / + path: /api/docs/docs.json port: http initialDelaySeconds: 10 periodSeconds: 10 readinessProbe: httpGet: - path: / + path: /api/docs/docs.json port: http initialDelaySeconds: 5 periodSeconds: 10