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