You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/tutorial/backup-management.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ Backup schedules are stored in the `spec.backups.pgbackrest.repos.schedules` sec
32
32
accepts a [cron-formatted](https://docs.k8s.io/concepts/workloads/controllers/cron-jobs/#cron-schedule-syntax) string
33
33
that dictates the backup schedule.
34
34
35
-
Let's say that our backup policy is to take a full backup once a day at 1am and take incremental backups every four hours.
35
+
Let's say that our backup policy is to take a full backup weekly on Sunday at 1am and take differential backups daily at 1am on every day except Sunday.
36
36
We would want to add configuration to our spec that looks similar to:
37
37
38
38
```
@@ -42,8 +42,8 @@ spec:
42
42
repos:
43
43
- name: repo1
44
44
schedules:
45
-
full: "0 1 * * *"
46
-
incremental: "0 */4 * * *"
45
+
full: "0 1 * * 0"
46
+
differential: "0 1 * * 1-6"
47
47
```
48
48
49
49
To manage scheduled backups, PGO will create several Kubernetes [CronJobs](https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/)
0 commit comments