fix(deployment): mount additional volumes
All checks were successful
Helm / helm-lint (push) Successful in 6s
Helm / helm-unittest (push) Successful in 15s
Release / publish-chart (push) Successful in 8s

This commit is contained in:
2025-10-12 22:02:42 +02:00
parent 3bce806ed6
commit 0caa188bb1
2 changed files with 9 additions and 1 deletions

View File

@@ -80,6 +80,7 @@
{{- define "athens-proxy.deployment.volumeMounts" -}}
{{- $volumeMounts := .Values.deployment.athensProxy.volumeMounts | default (list) }}
{{- if .Values.persistence.enabled }}
{{- $volumeMounts = concat $volumeMounts (list (dict "name" "data" "mountPath" .Values.persistence.data.mountPath)) }}
{{- end }}
@@ -129,7 +130,7 @@
{{/* volumes */}}
{{- define "athens-proxy.deployment.volumes" -}}
{{- $volumes := .Values.deployment.athensProxy.volumes | default (list) }}
{{- $volumes := .Values.deployment.volumes | default (list) }}
{{/* volumes (data) */}}