Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
k8s-postgresql
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
1ffb7f0b
authored
2023-10-12 12:06:55 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add "-l" so that local symlinks are copied to the remote as
".rclonelink".
1 parent
a757ed52
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
charts/postgresql-rclone/templates/job-backup.yaml
charts/postgresql-rclone/templates/job-backup.yaml
View file @
1ffb7f0
...
...
@@ -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
:
...
...
Please
register
or
sign in
to post a comment