commit 13f0f1f698f8773b235b48da5c346df068fb04cf
parent 058e7a6db8adf80c945a4fc4c67dbc26565c475d
Author: MTRNord <mtrnord1@gmail.com>
Date: Wed, 6 Mar 2024 11:22:46 +0100
Ensure config is mounted
Diffstat:
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.4
+version: 0.1.5
appVersion: "v0.5.15"
dependencies:
diff --git a/charts/element-call/templates/deployment.yaml b/charts/element-call/templates/deployment.yaml
@@ -54,17 +54,17 @@ spec:
periodSeconds: 3
resources:
{{- toYaml .Values.element_call.resources | nindent 12 }}
- {{- with .Values.element_call.volumeMounts }}
volumeMounts:
- name: config
mountPath: /app
+ {{- with .Values.element_call.volumeMounts }}
{{- toYaml . | nindent 12 }}
{{- end }}
- {{- with .Values.element_call.volumes }}
volumes:
- name: config
configMap:
name: {{ include "element_call.fullname" . }}
+ {{- with .Values.element_call.volumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.element_call.nodeSelector }}