Skip to content

Commit b2b7f1f

Browse files
committed
tidy up postgres helm values
1 parent f8d8fe5 commit b2b7f1f

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

.github/environments/values.test.yaml

+19-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,25 @@ postgres:
5252
memory: 128Mi
5353

5454
# -------- backups ---------
55-
pgBackRestConfig: {}
55+
pgBackRestConfig:
56+
global:
57+
# log-level-console: debug
58+
# --- pvc
59+
repo1-retention-full: "2"
60+
repo1-retention-diff: "3"
61+
repos:
62+
- name: repo1
63+
schedules:
64+
full: "0 7 * * *" # full backup every day at 7am
65+
differential: "0 */2 * * *" # differential every 2 hours
66+
volume:
67+
volumeClaimSpec:
68+
accessModes:
69+
- "ReadWriteOnce"
70+
resources:
71+
requests:
72+
storage: 2Gi
73+
storageClassName: "netapp-file-backup"
5674

5775
# ----- pgBouncer (network pooling) ------
5876
pgBouncerConfig:

0 commit comments

Comments
 (0)