1ffb7f0b by Adam Heath

Add "-l" so that local symlinks are copied to the remote as

".rclonelink".
1 parent a757ed52
......@@ -101,9 +101,9 @@ spec:
value: ":s3:$(S3_BUCKET)/$(S3_PREFIX)/"
{{- end }}
{{- if .Values.rclone.crypt.enabled }}
args: ["copy", "/backups/", ":crypt:"]
args: ["copy", "-l", "/backups/", ":crypt:"]
{{- else }}
args: ["copy", "/backups/", ":s3:$(S3_BUCKET)/$(S3_PREFIX)/"]
args: ["copy", "-l", "/backups/", ":s3:$(S3_BUCKET)/$(S3_PREFIX)/"]
{{- end }}
{{- end }}
containers:
......