Fix extra volumes

This commit is contained in:
Guilhem Lavaux 2024-12-05 22:26:14 +01:00
parent 18dcac6915
commit 14090b15e3
2 changed files with 7 additions and 2 deletions

View File

@ -4,8 +4,8 @@ name: basic-web-app
PullName: basic-app-puller
description: A basic Helm chart to have PHP webapps in Kubernetes. It supports webhook for pulling from gitea
type: application
version: 2.2.0
appVersion: "2.2.0"
version: 2.2.1
appVersion: "2.2.1"
dependencies:
- name: postgresql

View File

@ -167,3 +167,8 @@ spec:
- key: {{ .Values.configWeb.key }}
path: {{ .Values.configWeb.key }}
{{- end }}
{{- range .Values.extraVolumesWeb }}
- name: {{ .name }}
persistentVolumeClaim:
claimName: {{ .name }}
{{- end}}