Michael Grote
7a2ccbabb6
no more zfs send mirroring with rsync snaps an both sides Reviewed-on: #221 Co-authored-by: Michael Grote <michael.grote@posteo.de> Co-committed-by: Michael Grote <michael.grote@posteo.de>
99 lines
2.8 KiB
YAML
99 lines
2.8 KiB
YAML
---
|
|
# pbs_*
|
|
pbs_datastores:
|
|
- name: zfs_backup
|
|
path: /backup/pbs_data
|
|
gc_schedule: "sat 19:00"
|
|
|
|
pbs_prune_jobs:
|
|
- name: standard
|
|
schedule: "sat 18:15"
|
|
store: zfs_backup
|
|
keep_last: 3
|
|
keep_hourly: 24
|
|
keep_daily: 7
|
|
keep_weekly: 2
|
|
|
|
pbs_permissions:
|
|
- user: user_pve5-test@pbs
|
|
datastore: zfs_backup
|
|
role: DatastoreBackup
|
|
|
|
pbs_users:
|
|
- name: user_pve5
|
|
password: "{{ lookup('viczem.keepass.keepass', 'pbs_pve_user', 'password') }}"
|
|
realm: pbs
|
|
- name: user_pve5-test
|
|
password: "{{ lookup('viczem.keepass.keepass', 'pbs_pve_user-test', 'password') }}"
|
|
realm: pbs
|
|
# rpool ist unverschlüsselt als Boot-Medium
|
|
# entschlüsseln nach Boot mit: sudo zpool import -d /dev/disk/by-id/ -a && sudo zfs mount -a -l
|
|
|
|
## backup
|
|
### sudo zpool create -o ashift=12 -o feature@encryption=enabled -O encryption=on -O keylocation=prompt -O keyformat=passphrase backup /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi1
|
|
|
|
# mgrote.zfs_manage_datasets
|
|
### mgrote_zfs_extra
|
|
# Variablen für mgrote.zfs_health/trim/scrub/zed/arc_mem/ sind zusammengefasst unter zfs_extra_*
|
|
zfs_datasets: # DatenPools werden hier nicht verwaltet
|
|
# rpool - System-Datasets
|
|
- dataset: rpool
|
|
state: present
|
|
compression: zstd
|
|
sync: disabled
|
|
xattr: sa
|
|
dnodesize: auto
|
|
atime: on # noqa yaml[truthy]
|
|
snapdir: hidden
|
|
reservation: 1G
|
|
refreservation: 1G
|
|
acltype: posix
|
|
- dataset: rpool/ROOT
|
|
state: present
|
|
refreservation: 1G
|
|
- dataset: rpool/ROOT/pbs-1
|
|
state: present
|
|
refreservation: 1G
|
|
acltype: posix # https://docs.ansible.com/ansible-core/2.14/playbook_guide/playbooks_privilege_escalation.html#risks-of-becoming-an-unprivileged-user ; sonst kann die dotfiles-Rolle kein setfacl machen
|
|
|
|
# backup-pool
|
|
- dataset: backup/pbs_data
|
|
state: present
|
|
quota: 10GB
|
|
- dataset: backup/pve5
|
|
state: present
|
|
canmount: off # noqa yaml[truthy]
|
|
|
|
# Variablen für mgrote.zfs_health/trim/scrub/zed/arc_mem/ sind zusammengefasst unter zfs_extra_*
|
|
zfs_extra_arc_max_size: "1073741824" # 1GB in Bytes
|
|
zfs_extra_zfs_pools:
|
|
- name: "rpool"
|
|
systemd_timer_schedule: "*-01,04,07,10-01 23:00" # jeden ersten eines jeden Quartals
|
|
- name: "backup"
|
|
systemd_timer_schedule: "*-01,04,07,10-01 23:00"
|
|
|
|
### mgrote_zfs_sanoid
|
|
sanoid_snaps_enable: true
|
|
sanoid_datasets:
|
|
### rpool
|
|
- path: rpool
|
|
recursive: 'no' # noqa yaml[truthy]
|
|
snapshots: true
|
|
template: 'pve3tage'
|
|
- path: rpool/ROOT
|
|
recursive: 'no' # noqa yaml[truthy]
|
|
snapshots: true
|
|
template: 'pve3tage'
|
|
- path: rpool/ROOT/pbs-1
|
|
recursive: 'no' # noqa yaml[truthy]
|
|
snapshots: true
|
|
template: 'pve3tage'
|
|
### backup
|
|
- path: backup
|
|
recursive: 'no' # noqa yaml[truthy]
|
|
snapshots: true
|
|
template: '14tage'
|
|
- path: backup/pbs_data
|
|
recursive: 'no' # noqa yaml[truthy]
|
|
snapshots: true
|
|
template: '14tage'
|