From 0e3d36a5ae2920b524667e07b0816849ada40a66 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 c36f167..5877219 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 151a222..53cf545 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