diff --git a/bundles/gitea/metadata.py b/bundles/gitea/metadata.py index 4d31a94..7eb54f1 100644 --- a/bundles/gitea/metadata.py +++ b/bundles/gitea/metadata.py @@ -55,6 +55,13 @@ defaults = { 'home': '/home/git', }, }, + 'zfs': { + 'datasets': { + 'tank/gitea': { + 'mountpoint': '/var/lib/gitea', + }, + }, + }, } @@ -97,24 +104,6 @@ def conf(metadata): } -@metadata_reactor.provides( - 'zfs/datasets', -) -def zfs(metadata): - if not node.has_bundle('zfs'): - return {} - - return { - 'zfs': { - 'datasets': { - f"{metadata.get('zfs/storage_classes/ssd')}/gitea": { - 'mountpoint': '/var/lib/gitea', - }, - }, - }, - } - - @metadata_reactor.provides( 'nginx/vhosts', ) diff --git a/bundles/influxdb2/items.py b/bundles/influxdb2/items.py index aed2d2d..525a67c 100644 --- a/bundles/influxdb2/items.py +++ b/bundles/influxdb2/items.py @@ -5,7 +5,7 @@ directories['/var/lib/influxdb'] = { 'owner': 'influxdb', 'group': 'influxdb', 'needs': [ - f"zfs_dataset:{node.metadata.get('zfs/storage_classes/ssd')}/influxdb", + 'zfs_dataset:tank/influxdb', ], } diff --git a/bundles/influxdb2/metadata.py b/bundles/influxdb2/metadata.py index 2d345e5..690f053 100644 --- a/bundles/influxdb2/metadata.py +++ b/bundles/influxdb2/metadata.py @@ -52,7 +52,7 @@ def zfs(metadata): return { 'zfs': { 'datasets': { - f"{metadata.get('zfs/storage_classes/ssd')}/influxdb": { + 'tank/influxdb': { 'mountpoint': '/var/lib/influxdb', 'recordsize': '8192', 'atime': 'off', diff --git a/bundles/nextcloud/metadata.py b/bundles/nextcloud/metadata.py index fb8e579..4dc72e2 100644 --- a/bundles/nextcloud/metadata.py +++ b/bundles/nextcloud/metadata.py @@ -98,17 +98,25 @@ defaults = { 'user': 'www-data', }, }, - 'zfs': { - 'datasets': { - 'tank/nextcloud': { - 'mountpoint': '/var/lib/nextcloud', - 'needed_by': [ - 'bundle:nextcloud', - ], +} + + +@metadata_reactor.provides( + 'zfs/datasets', +) +def zfs(metadata): + return { + 'zfs': { + 'datasets': { + f"{metadata.get('zfs/storage_classes/hdd')}/nextcloud": { + 'mountpoint': '/var/lib/nextcloud', + 'needed_by': [ + 'bundle:nextcloud', + ], + }, }, }, - }, -} + } @metadata_reactor.provides( diff --git a/bundles/postgresql/items.py b/bundles/postgresql/items.py index 6dc83f6..8a5f4c6 100644 --- a/bundles/postgresql/items.py +++ b/bundles/postgresql/items.py @@ -9,7 +9,7 @@ directories = { 'group': 'postgres', 'needs': [ 'pkg_apt:postgresql', - f"zfs_dataset:{node.metadata.get('zfs/storage_classes/ssd')}/postgresql", + 'zfs_dataset:tank/postgresql', ], 'needed_by': [ 'svc_systemd:postgresql', diff --git a/bundles/postgresql/metadata.py b/bundles/postgresql/metadata.py index ea70794..ef5a7e4 100644 --- a/bundles/postgresql/metadata.py +++ b/bundles/postgresql/metadata.py @@ -64,7 +64,7 @@ def zfs(metadata): return { 'zfs': { 'datasets': { - f"{metadata.get('zfs/storage_classes/ssd')}/postgresql": { + 'tank/postgresql': { 'mountpoint': '/var/lib/postgresql', 'recordsize': '8192', 'atime': 'off', diff --git a/bundles/samba/items.py b/bundles/samba/items.py index b4015c0..46979cb 100644 --- a/bundles/samba/items.py +++ b/bundles/samba/items.py @@ -51,7 +51,7 @@ for name, conf in node.metadata.get('samba/shares').items(): 'owner': name, 'group': name, 'needs': [ - f'zfs_dataset:tank/samba/{name}', + f"zfs_dataset:{node.metadata.get('zfs/storage_classes/hdd')}/samba/{name}", ], } diff --git a/bundles/samba/metadata.py b/bundles/samba/metadata.py index 08293d0..8a5285a 100644 --- a/bundles/samba/metadata.py +++ b/bundles/samba/metadata.py @@ -15,13 +15,6 @@ defaults = { 'samba': { 'shares': {}, }, - 'zfs': { - 'datasets': { - 'tank/samba': { - 'mountpoint': '/var/lib/samba', - }, - }, - }, } @@ -32,10 +25,15 @@ def zfs(metadata): return { 'zfs': { 'datasets': { - f'tank/samba/{name}': { - 'mountpoint': f'/var/lib/samba/usershares/{name}', - } - for name in metadata.get('samba/shares') + f"{metadata.get('zfs/storage_classes/hdd')}/samba": { + 'mountpoint': '/var/lib/samba', + }, + **{ + f"{metadata.get('zfs/storage_classes/hdd')}/samba/{name}": { + 'mountpoint': f'/var/lib/samba/usershares/{name}', + } + for name in metadata.get('samba/shares') + }, }, }, } diff --git a/bundles/zfs/README.md b/bundles/zfs/README.md new file mode 100644 index 0000000..d904969 --- /dev/null +++ b/bundles/zfs/README.md @@ -0,0 +1,2 @@ +zpool iostat -v +zdb -Lbbbs tank diff --git a/bundles/zfs/metadata.py b/bundles/zfs/metadata.py index a8fe9a5..c2102f6 100644 --- a/bundles/zfs/metadata.py +++ b/bundles/zfs/metadata.py @@ -61,7 +61,7 @@ defaults = { 'pools': {}, 'kernel_params': {}, 'storage_classes': { - 'ssd': 'tank', + 'hdd': 'tank', }, 'auto_snapshots': { 'hourly': 24, diff --git a/nodes/home.server.py b/nodes/home.server.py index da8b691..b4c3c38 100644 --- a/nodes/home.server.py +++ b/nodes/home.server.py @@ -168,27 +168,35 @@ 'zfs': { 'zfs_arc_max_percent': 80, 'storage_classes': { - 'ssd': 'ssd', + 'hdd': 'hdd', }, 'pools': { 'tank': { + 'type': 'mirror', + 'devices': [ + '/dev/disk/by-id/nvme-SAMSUNG_MZVL22T0HBLB-00B00_S677NF0RA01551-part1', + '/dev/disk/by-id/nvme-SAMSUNG_MZVL22T0HBLB-00B00_S677NF0RA01566-part1', + ], + }, + 'hdd': { 'type': 'mirror', 'devices': [ '/dev/disk/by-partlabel/zfs-data-1', '/dev/disk/by-partlabel/zfs-data-2', ], }, - 'ssd': { - 'devices': [ - '/dev/disk/by-id/nvme-SAMSUNG_MZVL22T0HBLB-00B00_S677NF0RA01551-part3', - ], - }, - }, + }, 'datasets': { - 'ssd/nextcloud-appdata': { + 'tank/nextcloud-appdata': { 'mountpoint': '/var/lib/nextcloud/appdata_oci6dw1woodz', 'backup': False, - } + }, + 'hdd/nextcloud/ckn': { + 'mountpoint': '/var/lib/nextcloud/ckn/files', + }, + 'hdd/nextcloud/ckn-privat': { + 'mountpoint': '/var/lib/nextcloud/ckn-privat/files', + }, }, }, },