From 0171094d8ae059cee7196443df5746c397b81797 Mon Sep 17 00:00:00 2001 From: emrah Date: Thu, 25 Jan 2024 10:46:04 +0300 Subject: [PATCH 1/3] false as the default value of useExternalJigasi --- values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/values.yaml b/values.yaml index ee2ccfa..25fd260 100644 --- a/values.yaml +++ b/values.yaml @@ -250,7 +250,7 @@ jigasi: ## This setting skips the creation of Jigasi Deployment altogether, ## instead creating just the config secret and enabling services. ## Defaults to disabled (use bundled Jigasi). - useExternalJigasi: true + useExternalJigasi: false replicaCount: 1 image: From ffc9755c68f61b68a0e61412308d61d53bf476e3 Mon Sep 17 00:00:00 2001 From: emrah Date: Thu, 25 Jan 2024 10:56:44 +0300 Subject: [PATCH 2/3] docs: add jigasi parameters into readme --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5de5261..eada9b8 100644 --- a/README.md +++ b/README.md @@ -187,18 +187,28 @@ Parameter | Description | Default `jibri.image.repository` | Name of the image to use for the jibri pods | `jitsi/jibri` `jibri.extraEnvs` | Map containing additional environment variables for jibri | '{}' `jibri.livenessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A livenessProbe map -`jibri.readinessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map +`jibri.readinessProbe` | Map that holds the readiness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map `jibri.breweryMuc` | Name of the XMPP MUC used by jibri | `jibribrewery` `jibri.xmpp.user` | Name of the XMPP user used by jibri to authenticate | `jibri` `jibri.xmpp.password` | Password used by jibri to authenticate on the XMPP service | 10 random chars `jibri.recorder.user` | Name of the XMPP user used by jibri to record | `recorder` `jibri.recorder.password` | Password used by jibri to record on the XMPP service | 10 random chars `jibri.strategy` | Depolyment update strategy and parameters | `(unset)` +`jigasi.enabled` | Enable Jigasi service | `false` +`jigasi.useExternalJibri` | Use external Jigasi service, instead of chart-provided one | `true` +`jigasi.replicaCount` | Number of replica of the Jigasi pods | `1` +`jigasi.image.repository` | Name of the image to use for the Jigasi pods | `jitsi/jigasi` +`jigasi.breweryMuc` | Name of the XMPP MUC used by Jigasi | `jigasibrewery` +`jigasi.xmpp.user` | Name of the XMPP user used by Jigasi to authenticate | `jigasi` +`jigasi.xmpp.password` | Password used by Jigasi to authenticate on the XMPP service | 10 random chars +`jigasi.livenessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A livenessProbe map +`jigasi.readinessProbe` | Map that holds the readiness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map +`jigasi.extraEnvs` | Map containing additional environment variables for Jigasi | '{}' `jicofo.replicaCount` | Number of replica of the jicofo pods | `1` `jicofo.image.repository` | Name of the image to use for the jicofo pods | `jitsi/jicofo` `jicofo.extraEnvs` | Map containing additional environment variables for jicofo | '{}' `jicofo.livenessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A livenessProbe map -`jicofo.readinessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map +`jicofo.readinessProbe` | Map that holds the readiness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map `jicofo.xmpp.password` | Password used by jicofo to authenticate on the XMPP service | 10 random chars `jicofo.xmpp.componentSecret` | Values of the secret used by jicofo for the xmpp-component | 10 random chars `jvb.publicIPs` | List of IP addresses for JVB to announce to clients | `(unset)` @@ -212,7 +222,7 @@ Parameter | Description | Default `jvb.xmpp.user` | Name of the XMPP user used by jvb to authenticate | `jvb` `jvb.xmpp.password` | Password used by jvb to authenticate on the XMPP service | 10 random chars `jvb.livenessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A livenessProbe map -`jvb.readinessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map +`jvb.readinessProbe` | Map that holds the readiness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map `jvb.metrics.enabled` | Boolean that control the metrics exporter for jvb. If true the `ServiceMonitor` will also created | `false` `jvb.metrics.prometheusAnnotations` | Boolean that controls the generation of prometheus annotations, to expose metrics for HPA | `false` `jvb.metrics.image.repository` | Default image repository for metrics exporter | `docker.io/systemli/prometheus-jitsi-meet-exporter` @@ -229,7 +239,7 @@ Parameter | Description | Default `web.resolverIP` | Override nameserver IP for Web container | (*unset*, use auto-detected nameserver IP) `web.extraEnvs` | Map containing additional environment variable to web pods | '{}' `web.livenessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A livenessProbe map -`web.readinessProbe` | Map that holds the liveness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map +`web.readinessProbe` | Map that holds the readiness probe, you can add parameters such as timeout or retries following the Kubernetes spec | A readinessProbe map `tz` | System Time Zone | `Europe/Amsterdam` ## Package From bcc0911cc0710b7e5d77da64a18751cbd92e6e97 Mon Sep 17 00:00:00 2001 From: emrah Date: Thu, 25 Jan 2024 11:04:37 +0300 Subject: [PATCH 3/3] docs: fix the default value of useExternalJigasi --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eada9b8..e1243cd 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ Parameter | Description | Default `jibri.recorder.password` | Password used by jibri to record on the XMPP service | 10 random chars `jibri.strategy` | Depolyment update strategy and parameters | `(unset)` `jigasi.enabled` | Enable Jigasi service | `false` -`jigasi.useExternalJibri` | Use external Jigasi service, instead of chart-provided one | `true` +`jigasi.useExternalJigasi` | Use external Jigasi service, instead of chart-provided one | `false` `jigasi.replicaCount` | Number of replica of the Jigasi pods | `1` `jigasi.image.repository` | Name of the image to use for the Jigasi pods | `jitsi/jigasi` `jigasi.breweryMuc` | Name of the XMPP MUC used by Jigasi | `jigasibrewery`