element-call-helm

An experimental helm chart deploying a full element-call instance
git clone git://archive.git.mtrnord.blog/MTRNord/element-call-helm.git
Log | Files | Refs | README

commit 058e7a6db8adf80c945a4fc4c67dbc26565c475d
parent 538f4232fba7f1d5d86d91810bf26b3eab41d826
Author: MTRNord <mtrnord1@gmail.com>
Date:   Wed,  6 Mar 2024 11:12:25 +0100

Use correct endpoint for health

Diffstat:
Mcharts/element-call/Chart.yaml | 2+-
Mcharts/element-call/templates/deployment_livekit_mgmt_service.yaml | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/charts/element-call/Chart.yaml b/charts/element-call/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: element-call description: A Helm chart for element_call type: application -version: 0.1.3 +version: 0.1.4 appVersion: "v0.5.15" dependencies: diff --git a/charts/element-call/templates/deployment_livekit_mgmt_service.yaml b/charts/element-call/templates/deployment_livekit_mgmt_service.yaml @@ -48,13 +48,13 @@ spec: protocol: TCP livenessProbe: httpGet: - path: / + path: /healthz port: 8080 initialDelaySeconds: 3 periodSeconds: 3 readinessProbe: httpGet: - path: / + path: /healthz port: 8080 initialDelaySeconds: 3 periodSeconds: 3