Skip to content

Commit

Permalink
tidy up postgres helm values
Browse files Browse the repository at this point in the history
  • Loading branch information
TimCsaky committed Oct 22, 2024
1 parent f8d8fe5 commit b2b7f1f
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/environments/values.test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,25 @@ postgres:
memory: 128Mi

# -------- backups ---------
pgBackRestConfig: {}
pgBackRestConfig:
global:
# log-level-console: debug
# --- pvc
repo1-retention-full: "2"
repo1-retention-diff: "3"
repos:
- name: repo1
schedules:
full: "0 7 * * *" # full backup every day at 7am
differential: "0 */2 * * *" # differential every 2 hours
volume:
volumeClaimSpec:
accessModes:
- "ReadWriteOnce"
resources:
requests:
storage: 2Gi
storageClassName: "netapp-file-backup"

# ----- pgBouncer (network pooling) ------
pgBouncerConfig:
Expand Down

0 comments on commit b2b7f1f

Please sign in to comment.