Skip to content

Commit 10289f2

Browse files
authored
Update backup management example (CrunchyData#3120)
Use differential rather than incremental Use weekly full rather than daily Issue [sc-13901]
1 parent bf02172 commit 10289f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/content/tutorial/backup-management.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Backup schedules are stored in the `spec.backups.pgbackrest.repos.schedules` sec
3232
accepts a [cron-formatted](https://docs.k8s.io/concepts/workloads/controllers/cron-jobs/#cron-schedule-syntax) string
3333
that dictates the backup schedule.
3434

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.
3636
We would want to add configuration to our spec that looks similar to:
3737

3838
```
@@ -42,8 +42,8 @@ spec:
4242
repos:
4343
- name: repo1
4444
schedules:
45-
full: "0 1 * * *"
46-
incremental: "0 */4 * * *"
45+
full: "0 1 * * 0"
46+
differential: "0 1 * * 1-6"
4747
```
4848

4949
To manage scheduled backups, PGO will create several Kubernetes [CronJobs](https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/)

0 commit comments

Comments
 (0)