From 3330eb75c7ba9778799fe37579a39ef661f83742 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Mon, 22 Dec 2025 13:43:55 -0300 Subject: [PATCH] jitsi: add tcp harvester config for 4443 --- services/jitsi/deployment.yaml | 4 ++++ services/jitsi/kustomization.yaml | 1 + 2 files changed, 5 insertions(+) diff --git a/services/jitsi/deployment.yaml b/services/jitsi/deployment.yaml index 0bf45e0..434cd77 100644 --- a/services/jitsi/deployment.yaml +++ b/services/jitsi/deployment.yaml @@ -130,9 +130,13 @@ spec: - { name: JVB_TCP_PORT, value: "4443" } volumeMounts: - { name: cfg, mountPath: /config } + - { name: jvb-custom, mountPath: /config/custom-jvb.conf, subPath: custom-jvb.conf } volumes: - name: cfg persistentVolumeClaim: { claimName: jitsi-jvb-config } + - name: jvb-custom + configMap: + name: jitsi-jvb-custom-config --- diff --git a/services/jitsi/kustomization.yaml b/services/jitsi/kustomization.yaml index 8864598..c0f5ebb 100644 --- a/services/jitsi/kustomization.yaml +++ b/services/jitsi/kustomization.yaml @@ -8,3 +8,4 @@ resources: - pvc.yaml - ingress.yaml - secret.yaml + - jvb-configmap.yaml