mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 23:49:12 +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
|
appVersion: v2.0.5.1
|
||||||
description: Store securely encrypted backups on cloud storage services!
|
description: Store securely encrypted backups on cloud storage services!
|
||||||
name: duplicati
|
name: duplicati
|
||||||
version: 2.0.1
|
version: 2.1.0
|
||||||
keywords:
|
keywords:
|
||||||
- duplicati
|
- duplicati
|
||||||
home: https://github.com/k8s-at-home/charts/tree/master/charts/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://hub.docker.com/r/linuxserver/duplicati/
|
||||||
- https://github.com/duplicati/duplicati
|
- https://github.com/duplicati/duplicati
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: skaro13
|
- name: simoncaron
|
||||||
email: simon.caron@protonmail.com
|
email: simon.caron@protonmail.com
|
||||||
|
@ -71,6 +71,9 @@ spec:
|
|||||||
{{- if .Values.persistence.source.subPath }}
|
{{- if .Values.persistence.source.subPath }}
|
||||||
subPath: {{ .Values.persistence.source.subPath }}
|
subPath: {{ .Values.persistence.source.subPath }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.additionalVolumeMounts }}
|
||||||
|
{{- toYaml .Values.additionalVolumeMounts | nindent 12}}
|
||||||
|
{{- end }}
|
||||||
- mountPath: /backups
|
- mountPath: /backups
|
||||||
name: backups
|
name: backups
|
||||||
{{- if .Values.persistence.backups.subPath }}
|
{{- if .Values.persistence.backups.subPath }}
|
||||||
@ -98,6 +101,9 @@ spec:
|
|||||||
{{- else }}
|
{{- else }}
|
||||||
emptyDir: {}
|
emptyDir: {}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.additionalVolumes }}
|
||||||
|
{{- toYaml .Values.additionalVolumes | nindent 6}}
|
||||||
|
{{- end }}
|
||||||
- name: backups
|
- name: backups
|
||||||
{{- if .Values.persistence.backups.enabled }}
|
{{- if .Values.persistence.backups.enabled }}
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
|
Loading…
Reference in New Issue
Block a user