2022-11-04 14:08:06 +01:00
---
2023-10-25 22:26:17 +02:00
# rpool ist unverschlüsselt als Boot-Medium
# der Speicherort fur die VMs ist verschlüsselt
# zfs create -o encryption=aes-256-gcm -o keyformat=passphrase rpool/vm
# entschlüsseln nach Boot mit: sudo zpool import -d /dev/disk/by-id/ -a && sudo zfs mount -a -l
2023-11-29 22:24:57 +01:00
## hdd_data
### sudo zpool create -o ashift=12 -o feature@encryption=enabled -O encryption=on -O keylocation=prompt -O keyformat=passphrase hdd_data mirror /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi3 /dev/disk/by-id/scsi-0QEMU_QEMU_HARDDISK_drive-scsi2
2022-11-04 14:08:06 +01:00
2023-10-25 22:26:17 +02:00
# mgrote.zfs_manage_datasets
2023-11-29 21:15:50 +01:00
### mgrote_zfs_extra
2023-10-25 22:26:17 +02:00
# 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
2023-12-04 14:48:02 +01:00
acltype : posix
2023-10-25 22:26:17 +02:00
- dataset : rpool/ROOT
state : present
refreservation : 1G
- dataset : rpool/ROOT/pve-1
state : present
refreservation : 1G
2023-12-04 14:43:04 +01:00
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
2022-11-04 14:08:06 +01:00
2023-10-25 22:26:17 +02:00
# rpool - VMs
- dataset : rpool/vm
state : present
- dataset : rpool/vm/zvol
state : present
- dataset : rpool/vm/lxc
state : present
2023-12-04 14:43:04 +01:00
2023-11-29 22:24:57 +01:00
# hdd_data
- dataset : hdd_data
2023-10-25 22:26:17 +02:00
state : present
compression : zstd
sync : disabled
xattr : sa
dnodesize : auto
atime : on # noqa yaml[truthy]
snapdir : hidden
reservation : 1G
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/papa_backup
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/pve_backup
2023-10-25 22:26:17 +02:00
state : present
recordsize : 1M
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/videos
2023-10-25 22:26:17 +02:00
state : present
recordsize : 1M
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/music
2023-10-25 22:26:17 +02:00
state : present
recordsize : 1M
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/tmp
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/archiv
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/bilder
2023-10-25 22:26:17 +02:00
state : present
recordsize : 1M
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/scans
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/restic
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/backup
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/buecher
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/programme
2023-10-25 22:26:17 +02:00
state : present
2023-11-29 22:24:57 +01:00
- dataset : hdd_data/vm
2023-10-25 22:26:17 +02:00
state : present
2022-11-04 14:08:06 +01:00
2023-10-25 22:26:17 +02:00
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
2023-11-29 22:24:57 +01:00
- name : "hdd_data"
2023-10-25 22:26:17 +02:00
systemd_timer_schedule : "*-01,04,07,10-01 23:00"
2022-11-04 14:08:06 +01:00
2023-11-29 21:15:50 +01:00
### mgrote_zfs_sanoid
2023-10-25 22:26:17 +02:00
sanoid_datasets :
2023-11-29 22:24:57 +01:00
- path : 'hdd_data/videos'
2023-10-25 22:26:17 +02:00
template : '3tage'
recursive : 'yes'
snapshots : true
2023-11-29 22:24:57 +01:00
- path : 'hdd_data/music'
2023-10-25 22:26:17 +02:00
template : '14tage'
recursive : 'yes'
snapshots : true
2023-11-29 22:24:57 +01:00
- path : 'hdd_data/papa_backup'
2023-10-25 22:26:17 +02:00
template : '14tage'
recursive : 'yes'
snapshots : true
2023-11-29 22:24:57 +01:00
- path : 'hdd_data/tmp'
2023-10-25 22:26:17 +02:00
template : '3tage'
recursive : 'yes'
snapshots : true
2023-11-29 22:24:57 +01:00
- path : 'hdd_data/pve_backup'
2023-10-25 22:26:17 +02:00
template : '3tage'
recursive : 'yes'
snapshots : true
2023-11-29 22:24:57 +01:00
- path : 'hdd_data/archiv'
2023-10-25 22:26:17 +02:00
template : '14tage'
recursive : 'yes'
snapshots : true
2023-11-29 22:24:57 +01:00
- path : hdd_data/bilder
2023-10-25 22:26:17 +02:00
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : '14tage'
2023-11-29 22:24:57 +01:00
- path : hdd_data/scans
2023-10-25 22:26:17 +02:00
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : '3tage'
2023-11-29 22:24:57 +01:00
- path : hdd_data/backup
2023-10-25 22:26:17 +02:00
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : '31tage'
2023-11-29 22:24:57 +01:00
- path : hdd_data/restic
2023-10-25 22:26:17 +02:00
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : '3tage'
2023-11-29 22:24:57 +01:00
- path : hdd_data/programme
2023-10-25 22:26:17 +02:00
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : '14tage'
2023-11-29 22:24:57 +01:00
- path : hdd_data/buecher
2023-10-25 22:26:17 +02:00
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : '14tage'
2023-11-29 22:24:57 +01:00
- path : hdd_data/vm
2023-10-25 22:26:17 +02:00
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : 'pve3tage'
- 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/pve-1
recursive : 'no' # noqa yaml[truthy]
snapshots : true
template : '3tage'
2022-11-04 14:08:06 +01:00
2023-11-29 21:15:50 +01:00
### mgrote_cv4pve-autosnap
2023-10-25 22:26:17 +02:00
cv4pve_api_user : root@pam!cv4pve-autosnap
cv4pve_api_token : "{{ lookup('keepass', 'cv4pve_api_token', 'password') }}"
cv4pve_vmid : all
cv4pve_keep_snapshots : 5
cv4pve_dl_link : "https://github.com/Corsinvest/cv4pve-autosnap/releases/download/v1.10.0/cv4pve-autosnap-linux-x64.zip"
2022-11-04 14:08:06 +01:00
2023-11-29 21:15:50 +01:00
### mgrote_proxmox_bind_mounts
2023-10-25 22:26:17 +02:00
pve_bind_mounts :
- vmid : 100
mp_nr : 0
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/videos
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_videos
- vmid : 100
mp_nr : 2
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/pve_backup
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_pve_backup
- vmid : 100
mp_nr : 3
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/papa_backup
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_papa_backup
- vmid : 100
mp_nr : 4
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/music
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_music
- vmid : 100
mp_nr : 5
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/tmp
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_tmp
- vmid : 100
mp_nr : 6
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/archiv
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_archiv
- vmid : 100
mp_nr : 7
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/bilder
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_bilder
- vmid : 100
mp_nr : 9
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/scans
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_scans
- vmid : 100
mp_nr : 10
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/restic
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_restic
- vmid : 100
mp_nr : 12
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/backup
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_backup
- vmid : 100
mp_nr : 14
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/buecher
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_buecher
- vmid : 100
mp_nr : 15
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/programme
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_programme
- vmid : 100
mp_nr : 16
2023-11-29 22:24:57 +01:00
mp_path_host : /hdd_data/vm
2023-10-25 22:26:17 +02:00
mp_path_guest : /shares_vm
2023-07-05 11:47:57 +02:00
2023-10-25 22:26:17 +02:00
# mgrote.pbs_pve_integration
pve_pbs_datastore :
- name : pbs
server : 192.168 .2 .18
datastore : zfs_backup
username : user_pve5-test@pbs
password : "{{ lookup('keepass', 'pbs_pve_user-test', 'password') }}"
fingerprint : "38:53:f6:1e:99:99:76:78:c4:00:dd:90:1a:89:47:56:97:4e:f3:62:01:d2:2c:76:ba:f8:55:be:f8:05:d1:7a"