From 31752314ca0da7cffd8cc0ee68b39c486b252c28 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Thu, 25 Dec 2025 16:40:37 -0300 Subject: [PATCH] jitsi-launcher: add health endpoint and readiness --- services/jitsi/launcher-configmap.yaml | 5 +++++ services/jitsi/launcher-deployment.yaml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/services/jitsi/launcher-configmap.yaml b/services/jitsi/launcher-configmap.yaml index c36f1678..58772199 100644 --- a/services/jitsi/launcher-configmap.yaml +++ b/services/jitsi/launcher-configmap.yaml @@ -116,3 +116,8 @@ data: @app.get("/") async def root(): return RedirectResponse("/launch") + + + @app.get("/health") + async def health(): + return {"status": "ok"} diff --git a/services/jitsi/launcher-deployment.yaml b/services/jitsi/launcher-deployment.yaml index 151a222e..53cf5457 100644 --- a/services/jitsi/launcher-deployment.yaml +++ b/services/jitsi/launcher-deployment.yaml @@ -35,7 +35,7 @@ spec: - { name: jwt, mountPath: /var/lib/jitsi-jwt, readOnly: true } readinessProbe: httpGet: - path: /launch + path: /health port: 80 initialDelaySeconds: 5 periodSeconds: 10