Skip to content

Commit

Permalink
make filename encryption optional
Browse files Browse the repository at this point in the history
Signed-off-by: David Young <davidy@funkypenguin.co.nz>
  • Loading branch information
funkypenguin committed Dec 3, 2023
1 parent bdecdad commit 0bc7072
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion charts/other/myprecious/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.2524-pre-08
version: 1.0.2524-pre-09

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stringData:
[gdrive-encrypted-a]
type = crypt
remote = gdrive-a:{{ .Values.rclonegdriveencrypteda.encryption_root | default }}
filename_encryption = off
filename_encryption = {{ .Values.rclonegdriveencrypteda.filename_encryption | default on }}
password = {{ .Values.rclonegdriveencrypteda.password }}
password2 = {{ .Values.rclonegdriveencrypteda.password2 | default }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
type: Opaque
stringData:
remote: storagebox-encrypted-a
remotePath: {{ .Values.rclonestorageboxencrypteda.encryption_root | default }}
remotePath:
vfs-cache-mode: full
poll-interval: 10s
drive-pacer-min-sleep: 10ms
Expand All @@ -17,15 +17,16 @@ stringData:
timeout: 1h
configData: |
[storagebox-a]
type = smb
host = {{ .Values.rclonestorageboxencrypteda.user }}.your-storagebox.de
type = webdav
url = https://{{ .Values.rclonestorageboxencrypteda.user }}.your-storagebox.de
pass = {{ .Values.rclonestorageboxencrypteda.pass }}
user = {{ .Values.rclonestorageboxencrypteda.user }}
vendor = other
[storagebox-encrypted-a]
type = crypt
remote = storagebox-a:{{ if eq .Values.rclonestorageboxencrypteda.subaccount true }}{{ .Values.rclonestorageboxencrypteda.username }}{{ else }}backup{{ end }}
filename_encryption = off
remote = storagebox-a:{{ .Values.rclonestorageboxencrypteda.encryption_root | default }}
filename_encryption = {{ .Values.rclonestorageboxencrypteda.filename_encryption | default on }}
password = {{ .Values.rclonestorageboxencrypteda.encryption_password }}
password2 = {{ .Values.rclonestorageboxencrypteda.encryption_password2 | default }}
{{ end }}

0 comments on commit 0bc7072

Please sign in to comment.