zfs fixes and default tank is on ssd now

This commit is contained in:
cronekorkn 2022-09-18 15:39:36 +02:00
parent af274d0076
commit 5b66659ce2
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw
11 changed files with 58 additions and 53 deletions

View file

@ -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',
)

View file

@ -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',
],
}

View file

@ -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',

View file

@ -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(

View file

@ -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',

View file

@ -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',

View file

@ -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}",
],
}

View file

@ -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')
},
},
},
}

2
bundles/zfs/README.md Normal file
View file

@ -0,0 +1,2 @@
zpool iostat -v
zdb -Lbbbs tank

View file

@ -61,7 +61,7 @@ defaults = {
'pools': {},
'kernel_params': {},
'storage_classes': {
'ssd': 'tank',
'hdd': 'tank',
},
'auto_snapshots': {
'hourly': 24,

View file

@ -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',
},
},
},
},