Add "-l" so that local symlinks are copied to the remote as
".rclonelink".
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -101,9 +101,9 @@ spec: | ... | @@ -101,9 +101,9 @@ spec: |
101 | value: ":s3:$(S3_BUCKET)/$(S3_PREFIX)/" | 101 | value: ":s3:$(S3_BUCKET)/$(S3_PREFIX)/" |
102 | {{- end }} | 102 | {{- end }} |
103 | {{- if .Values.rclone.crypt.enabled }} | 103 | {{- if .Values.rclone.crypt.enabled }} |
104 | args: ["copy", "/backups/", ":crypt:"] | 104 | args: ["copy", "-l", "/backups/", ":crypt:"] |
105 | {{- else }} | 105 | {{- else }} |
106 | args: ["copy", "/backups/", ":s3:$(S3_BUCKET)/$(S3_PREFIX)/"] | 106 | args: ["copy", "-l", "/backups/", ":s3:$(S3_BUCKET)/$(S3_PREFIX)/"] |
107 | {{- end }} | 107 | {{- end }} |
108 | {{- end }} | 108 | {{- end }} |
109 | containers: | 109 | containers: | ... | ... |
-
Please register or sign in to post a comment