From 29a37b77141c03efaef51af20af1d52067527012 Mon Sep 17 00:00:00 2001 From: WrenIX Date: Wed, 7 Feb 2024 22:36:25 +0100 Subject: [PATCH] fix(conduit): needs empty path as env --- conduit/Chart.yaml | 2 +- conduit/README.adoc | 2 +- conduit/templates/deployment.yaml | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/conduit/Chart.yaml b/conduit/Chart.yaml index 912ccc0..fa20f58 100644 --- a/conduit/Chart.yaml +++ b/conduit/Chart.yaml @@ -3,7 +3,7 @@ name: conduit description: Conduit is a simple, fast and reliable chat server powered by Matrix. icon: https://conduit.rs/conduit.svg type: application -version: 0.2.3 +version: 0.2.4 # renovate: image=registry.gitlab.com/famedly/conduit/matrix-conduit appVersion: "0.6.0" maintainers: diff --git a/conduit/README.adoc b/conduit/README.adoc index 83d1b3d..a3f5293 100644 --- a/conduit/README.adoc +++ b/conduit/README.adoc @@ -2,7 +2,7 @@ = conduit -image::https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square[Version: 0.2.3] +image::https://img.shields.io/badge/Version-0.2.4-informational?style=flat-square[Version: 0.2.4] image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application] image::https://img.shields.io/badge/AppVersion-0.6.0-informational?style=flat-square[AppVersion: 0.6.0] == Maintainers diff --git a/conduit/templates/deployment.yaml b/conduit/templates/deployment.yaml index 9514288..c803d99 100644 --- a/conduit/templates/deployment.yaml +++ b/conduit/templates/deployment.yaml @@ -61,6 +61,8 @@ spec: value: "0.0.0.0" - name: "CONDUIT_SERVER_NAME" value: {{ .Values.conduit.server_name | quote }} + - name: "CONDUIT_CONFIG" + value: "" - name: "CONDUIT_DATABASE_PATH" value: "/var/lib/matrix-conduit" - name: "CONDUIT_DATABASE_BACKEND" @@ -123,4 +125,4 @@ spec: claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{- else }}{{ template "conduit.fullname" . }}{{- end }} {{- else }} emptyDir: {} - {{- end }} \ No newline at end of file + {{- end }}