bundlewrap/nodes/rx300.py

99 lines
2.6 KiB
Python
Raw Normal View History

2020-10-25 15:46:45 +00:00
# To be put into Colocation.
# To use the serial console in iRMC, set up grub as follows:
# GRUB_TIMEOUT=30
# GRUB_CMDLINE_LINUX_DEFAULT="console=ttyS0,115200 console=tty0"
# GRUB_TERMINAL=serial
# GRUB_SERIAL_COMMAND="serial --speed=115200 --unit=0 --word=8 --parity=no --stop=1"
2020-10-25 12:54:19 +00:00
nodes['rx300'] = {
'hostname': '31.47.232.106',
2020-10-25 15:46:45 +00:00
'bundles': {
'lm-sensors',
2021-05-20 16:24:23 +00:00
'smartd',
2021-05-23 12:33:20 +00:00
'vmhost',
2020-10-25 15:46:45 +00:00
'zfs',
},
2020-11-21 09:55:09 +00:00
'groups': {
'debian-buster',
},
2020-10-25 15:46:45 +00:00
'metadata': {
2020-11-09 14:16:29 +00:00
'interfaces': {
# from the back: [IPMI] [eth1] [eth0]
2021-05-23 12:33:20 +00:00
'br0': {
2020-11-09 14:16:29 +00:00
'ips': {
'172.19.138.26/24',
'31.47.232.106/29',
'2a00:f820:528::2/64',
2020-11-09 14:16:29 +00:00
},
'gateway4': '31.47.232.105',
'gateway6': '2a00:f820:528::1',
},
},
'apt': {
'packages': {
'ipmitool': {},
2020-11-09 14:16:29 +00:00
},
},
2020-11-21 10:31:40 +00:00
'icinga_options': {
# TODO remove once this is no longer at home
2021-05-20 16:24:35 +00:00
'vars.notification.sms': False,
2020-11-21 10:31:40 +00:00
},
'backups': {
'exclude_from_backups': True,
},
2021-05-20 16:24:23 +00:00
'smartd': {
'disks': {
'/dev/nvme0',
},
},
'systemd-networkd': {
2021-05-23 12:33:20 +00:00
'bridges': {
'br0': {
'match': {
'eth0',
'eth1',
2021-05-23 12:33:20 +00:00
},
},
},
},
'users': {
'kunsi': {
2021-05-23 12:33:20 +00:00
'groups': {
'libvirt',
},
'ssh_pubkey': {
# work laptop
'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPM68t1Ssf0c9dEkYOEXllUQ0aybPsW3aQAJuWpUHPlt',
'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICYst1HK+gJYhNxzqJGnz4iB73pa89Xz2yH+8wufOcsA',
},
},
},
2020-10-25 15:46:45 +00:00
'zfs': {
2020-10-25 15:49:36 +00:00
'module_options': {
'zfs_arc_max_mb': 16384, # 16GB
},
2020-10-25 15:46:45 +00:00
'pools': {
'tank': {
'raidz': {
'/dev/sda',
'/dev/sdb',
'/dev/sdc',
'/dev/sdd',
},
},
},
2021-05-23 12:33:20 +00:00
'datasets': {
'tank/libvirt': {
'mountpoint': '/var/lib/libvirt',
'compression': 'on',
},
},
2020-10-25 15:46:45 +00:00
},
'vm': {
'cpu': 32,
2021-05-20 15:51:50 +00:00
'ram': 256,
2020-10-25 15:46:45 +00:00
},
},
2020-10-25 12:54:19 +00:00
}