From c9ebcfc8692cc4aab071922452a0bd23f72a9fc9 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Thu, 25 Dec 2025 16:54:33 -0300 Subject: [PATCH] jitsi-launcher: allow any authenticated user (no group gate) --- services/jitsi/launcher-deployment.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/jitsi/launcher-deployment.yaml b/services/jitsi/launcher-deployment.yaml index 53cf545..b957e24 100644 --- a/services/jitsi/launcher-deployment.yaml +++ b/services/jitsi/launcher-deployment.yaml @@ -26,7 +26,8 @@ spec: - { name: JWT_AUDIENCE, value: "jitsi" } - { name: JWT_APP_ID, value: "jitsi" } - { name: PUBLIC_URL, value: "https://meet.bstein.dev" } - - { name: ALLOWED_GROUPS, value: "admin,jitsi-moderator" } + # Allow any authenticated user to mint; tighten later by setting comma list + - { name: ALLOWED_GROUPS, value: "" } - { name: JWT_TTL_SECONDS, value: "600" } ports: - { name: http, containerPort: 80 }