nodes/home.nas: introduce
All checks were successful
bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Franzi 2020-11-12 19:40:41 +01:00
parent f2a0f0b46a
commit 5b1b7241b7
Signed by: kunsi
GPG key ID: 12E3D2136B818350

48
nodes/home/nas.py Normal file
View file

@ -0,0 +1,48 @@
# ZFS-Pool 'storage' is not configured using bw, because we're using
# RAID-Z2 with ZIL and ARC on SSDs
nodes['home.nas'] = {
'hostname': '172.19.138.90',
'bundles': {
'zfs',
},
'groups': set(),
'metadata': {
'interfaces': {
'eno1': {
'ips': {
'172.19.138.90/24',
},
},
'br0': {
'ips': {
'172.19.138.20/24',
},
'gateway4': '172.19.138.1',
},
},
'systemd-networkd': {
'bonds': {
'bond0': {
'match': {
'enp8*',
'enp9*',
},
},
},
'bridges': {
'br0': {
'match': {
'bond0',
},
},
},
},
'vm': {
'cpu': 8,
'ram': 16,
},
},
'os': 'debian',
'os_version': (11,),
}