mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-23 08:54:12 +01:00
e70b6f3071
Done: * implement autosnapper that asserts interval between snapshots * implement pruner * job pull: pulling + pruning * job source: autosnapping + serving TODO * job source: pruning * job local: everything * fatal errors such as serve that cannot bind socket must be more visible * couldn't things that need a snapshotprefix just use a interface Prefixer() instead? then we could have prefixsnapshotfilter and not duplicate it every time... * either go full context.Context or not at all...? just wait because community climate around it isn't that great and we only need it for cancellation? roll our own?
28 lines
745 B
YAML
28 lines
745 B
YAML
jobs:
|
|
- name: fullbackup_prod1
|
|
type: pull
|
|
# connect to remote using ssh / stdinserver command
|
|
connect:
|
|
type: ssh+stdinserver
|
|
host: prod1.example.com
|
|
user: root
|
|
port: 22
|
|
identity_file: /root/.ssh/id_ed25519
|
|
|
|
# pull (=ask for new snapshots) every 10m, prune afterwards
|
|
# this will leave us at most 10m behind production
|
|
interval: 10m
|
|
|
|
# pull all offered filesystems to storage/backups/zrepl/pull/prod1.example.com
|
|
mapping: {
|
|
"<":"storage/backups/zrepl/pull/prod1.example.com"
|
|
}
|
|
initial_repl_policy: most_recent
|
|
|
|
# follow a grandfathering scheme for filesystems on the right-hand-side of the mapping
|
|
snapshot_prefix: zrepl_
|
|
prune:
|
|
policy: grid
|
|
grid: 1x1h(keep=all) | 24x1h | 35x1d | 6x30d
|
|
|