From 377545d51452768169de285613162bad4ec42d30 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 21 Apr 2021 21:32:26 +0200 Subject: [PATCH] fix jitsi --- jitsi/deployment.yaml | 8 ++++++++ jitsi/ingress.yaml | 9 ++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/jitsi/deployment.yaml b/jitsi/deployment.yaml index 7322486..52e2bfc 100644 --- a/jitsi/deployment.yaml +++ b/jitsi/deployment.yaml @@ -46,6 +46,8 @@ spec: value: Europe/Zurich - name: JVB_BREWERY_MUC value: jvbbrewery + - name: PUBLIC_URL + value: https://meet.tobru.ch - name: prosody image: jitsi/prosody:stable-5765-1 imagePullPolicy: IfNotPresent @@ -81,6 +83,8 @@ spec: value: Europe/Zurich - name: JVB_TCP_HARVESTER_DISABLED value: "true" + - name: PUBLIC_URL + value: https://meet.tobru.ch - name: web image: jitsi/web:stable-5765-1 imagePullPolicy: IfNotPresent @@ -111,6 +115,8 @@ spec: value: "1" - name: ETHERPAD_URL_BASE value: http://localhost:9001 + - name: PUBLIC_URL + value: https://meet.tobru.ch - name: jvb image: jitsi/jvb:stable-5765-1 imagePullPolicy: IfNotPresent @@ -149,6 +155,8 @@ spec: value: jvbbrewery - name: TZ value: Europe/Zurich + - name: PUBLIC_URL + value: https://meet.tobru.ch - name: etherpad image: jitsi/etherpad:stable-5142 imagePullPolicy: IfNotPresent diff --git a/jitsi/ingress.yaml b/jitsi/ingress.yaml index 1634de7..ebf26d6 100644 --- a/jitsi/ingress.yaml +++ b/jitsi/ingress.yaml @@ -1,4 +1,4 @@ -apiVersion: extensions/v1beta1 +apiVersion: networking.k8s.io/v1 kind: Ingress metadata: annotations: @@ -11,9 +11,12 @@ spec: http: paths: - path: / + pathType: Prefix backend: - serviceName: web - servicePort: http + service: + name: web + port: + number: 80 tls: - hosts: - meet.tobru.ch