Fix volume handling and persistence flag

This commit is contained in:
kaiyou 2022-11-06 17:50:06 +01:00
parent e94d6f78d7
commit 49a138b670
1 changed files with 2 additions and 2 deletions

View File

@ -81,16 +81,16 @@ spec:
name: {{ include "garage.fullname" . }}-config name: {{ include "garage.fullname" . }}-config
- name: etc - name: etc
emptyDir: {} emptyDir: {}
{{- if eq .Values.deployment.kind "DaemonSet" }}
{{- if .Values.persistence.enabled }} {{- if .Values.persistence.enabled }}
{{- if eq .Values.deployment.kind "DaemonSet" }}
- name: meta - name: meta
hostPath: hostPath:
path: {{ .Values.persistence.meta.hostPath }} path: {{ .Values.persistence.meta.hostPath }}
- name: data - name: data
hostPath: hostPath:
path: {{ .Values.persistence.data.hostPath }} path: {{ .Values.persistence.data.hostPath }}
{{- else }}
{{- end }} {{- end }}
{{- else }}
- name: meta - name: meta
emptyDir: {} emptyDir: {}
- name: data - name: data