123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {{- define "syncthing.persistence" -}}
- persistence:
- home:
- enabled: true
- {{- include "syncthing.storage.ci.migration" (dict "storage" .Values.syncthingStorage.home) }}
- {{- include "ix.v1.common.app.storageOptions" (dict "storage" .Values.syncthingStorage.home) | nindent 4 }}
- targetSelector:
- syncthing:
- syncthing:
- mountPath: /var/syncthing
- 01-certs:
- mountPath: /var/syncthing
- configure:
- enabled: true
- type: configmap
- objectName: syncthing-configure
- defaultMode: "0770"
- targetSelector:
- syncthing:
- syncthing:
- mountPath: /configure.sh
- subPath: configure.sh
- truenas-logo:
- enabled: true
- type: configmap
- objectName: syncthing-truenas-logo
- defaultMode: "0770"
- targetSelector:
- syncthing:
- syncthing:
- mountPath: /var/truenas/assets/gui/default/assets/img/logo-horizontal.svg
- subPath: logo-horizontal.svg
- {{- if not .Values.syncthingStorage.additionalStorages -}}
- {{- fail "Syncthing - Expected at least one additional storage defined" -}}
- {{- end -}}
- {{- range $idx, $storage := .Values.syncthingStorage.additionalStorages }}
- {{ printf "sync-%v" (int $idx) }}:
- enabled: true
- {{- include "syncthing.storage.ci.migration" (dict "storage" $storage) }}
- {{- include "ix.v1.common.app.storageOptions" (dict "storage" $storage) | nindent 4 }}
- targetSelector:
- syncthing:
- syncthing:
- mountPath: {{ $storage.mountPath }}
- {{- end }}
- {{- if .Values.syncthingNetwork.certificateID }}
- certs:
- enabled: true
- type: secret
- objectName: syncthing-cert
- defaultMode: "0600"
- items:
- - key: tls.key
- path: https-key.pem
- - key: tls.crt
- path: https-cert.pem
- targetSelector:
- syncthing:
- 01-certs:
- mountPath: /certs
- readOnly: true
- scaleCertificate:
- syncthing-cert:
- enabled: true
- id: {{ .Values.syncthingNetwork.certificateID }}
- {{- end -}}
- {{- end -}}
- {{/* TODO: Remove on the next version bump, eg 1.2.0+ */}}
- {{- define "syncthing.storage.ci.migration" -}}
- {{- $storage := .storage -}}
- {{- if $storage.hostPath -}}
- {{- $_ := set $storage "hostPathConfig" dict -}}
- {{- $_ := set $storage.hostPathConfig "hostPath" $storage.hostPath -}}
- {{- end -}}
- {{- end -}}
|