From 0300f62deca7a2c9d5fa515dd1a3028e3768a3d0 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Tue, 10 May 2022 11:56:27 +0200 Subject: [PATCH] Add health check endpoint --- clank/apps/prod/darklight/server.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clank/apps/prod/darklight/server.yaml b/clank/apps/prod/darklight/server.yaml index cf580ab..5d38985 100644 --- a/clank/apps/prod/darklight/server.yaml +++ b/clank/apps/prod/darklight/server.yaml @@ -22,13 +22,13 @@ spec: - containerPort: 8000 livenessProbe: httpGet: - path: / + path: /download/healthz port: 8000 initialDelaySeconds: 5 timeoutSeconds: 5 readinessProbe: httpGet: - path: / + path: /download/healthz port: 8000 initialDelaySeconds: 5 timeoutSeconds: 5