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
1fe9b67d
authored
2024-03-07 14:04:32 -0600
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Expose keep last, weeks, months settings, and change days back to 7.
Refs: #BF-11762
1 parent
1ffb7f0b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
charts/postgresql-rclone/templates/backup-local.yaml
charts/postgresql-rclone/values.yaml
charts/postgresql-rclone/templates/backup-local.yaml
View file @
1fe9b67
...
...
@@ -7,5 +7,8 @@ data:
{{- range $database := .Values.postgresql.databases }}
{{ $database }}
{{- end }}{{ .Values.local.postgresDb | quote }}
BACKUP_KEEP_MINS: {{ .Values.local.backupKeepLast | quote }}
BACKUP_KEEP_DAYS: {{ .Values.local.backupKeepDays | quote }}
BACKUP_KEEP_WEEKS: {{ .Values.local.backupKeepWeeks | quote }}
BACKUP_KEEP_MONTHS: {{ .Values.local.backupKeepMonths | quote }}
...
...
charts/postgresql-rclone/values.yaml
View file @
1fe9b67
...
...
@@ -23,7 +23,10 @@ local:
repository
:
prodrigestivill/postgres-backup-local
tag
:
"
latest"
pullPolicy
:
IfNotPresent
backupKeepDays
:
288
backupKeepLast
:
1440
backupKeepDays
:
7
backupKeepWeeks
:
4
backupKeepMonths
:
6
backup
:
enabled
:
false
...
...
Please
register
or
sign in
to post a comment