mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[duplicati] Add possibility to add additional volume mounts (#643)
This commit is contained in:
parent
f93046f40f
commit
a7bb41b467
@ -2,7 +2,7 @@ apiVersion: v2
|
||||
appVersion: v2.0.5.1
|
||||
description: Store securely encrypted backups on cloud storage services!
|
||||
name: duplicati
|
||||
version: 2.0.1
|
||||
version: 2.1.0
|
||||
keywords:
|
||||
- duplicati
|
||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/duplicati
|
||||
@ -11,5 +11,5 @@ sources:
|
||||
- https://hub.docker.com/r/linuxserver/duplicati/
|
||||
- https://github.com/duplicati/duplicati
|
||||
maintainers:
|
||||
- name: skaro13
|
||||
- name: simoncaron
|
||||
email: simon.caron@protonmail.com
|
||||
|
@ -71,6 +71,9 @@ spec:
|
||||
{{- if .Values.persistence.source.subPath }}
|
||||
subPath: {{ .Values.persistence.source.subPath }}
|
||||
{{- end }}
|
||||
{{- if .Values.additionalVolumeMounts }}
|
||||
{{- toYaml .Values.additionalVolumeMounts | nindent 12}}
|
||||
{{- end }}
|
||||
- mountPath: /backups
|
||||
name: backups
|
||||
{{- if .Values.persistence.backups.subPath }}
|
||||
@ -98,6 +101,9 @@ spec:
|
||||
{{- else }}
|
||||
emptyDir: {}
|
||||
{{- end }}
|
||||
{{- if .Values.additionalVolumes }}
|
||||
{{- toYaml .Values.additionalVolumes | nindent 6}}
|
||||
{{- end }}
|
||||
- name: backups
|
||||
{{- if .Values.persistence.backups.enabled }}
|
||||
persistentVolumeClaim:
|
||||
|
Loading…
Reference in New Issue
Block a user