bundlewrap/nodes/rx300.py

138 lines
3.7 KiB
Python

# 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"
nodes['rx300'] = {
'hostname': '31.47.232.106',
'bundles': {
'lm-sensors',
'miniflux',
'postgresql',
'smartd',
'travelynx',
'vmhost',
'zfs',
},
'groups': {
'debian-bullseye',
'webserver',
},
'metadata': {
'interfaces': {
'br0': {
'ips': {
'31.47.232.106/29',
'2a00:f820:528::2/64',
},
'gateway4': '31.47.232.105',
'gateway6': '2a00:f820:528::1',
},
},
'apt': {
'packages': {
'ipmitool': {},
},
# XXX remove this once nginx.org has packages for debian bullseye
'repos': {
'nginx': {
'items': atomic({
'deb http://nginx.org/packages/debian buster nginx',
}),
},
},
},
'icinga_options': {
'pretty_name': 'franzi.business',
},
'miniflux': {
'domain': 'rss.franzi.business',
},
'nginx': {
'vhosts': {
'miniflux': {
'ssl': '_.franzi.business',
},
'unicornsden': {
'domain': 'unicornsden.franzi.business',
'ssl': '_.franzi.business',
'webroot_config': {
'owner': 'kunsi',
'group': 'kunsi',
'mode': '0755',
},
},
'travelynx': {
'domain': 'travelynx.franzi.business',
'ssl': '_.franzi.business',
'locations': {
'/': {
'target': 'http://127.0.0.1:22020',
},
'/static': {
'root': '/opt/travelynx/public',
},
'/service-worker.js': {
'root': '/opt/travelynx/public',
},
},
},
},
},
'postgresql': {
'version': '13',
},
'smartd': {
'disks': {
'/dev/nvme0',
},
},
'systemd-networkd': {
'bridges': {
'br0': {
'match': {
'eno1',
},
},
},
},
'travelynx': {
'version': '1.20.2',
'mail_from': 'travelynx@franzi.business',
},
'users': {
'kunsi': {
'groups': {
'libvirt',
},
},
},
'zfs': {
'module_options': {
'zfs_arc_max_gb': 16,
},
'pools': {
'tank': {
'raidz': {
'/dev/sda',
'/dev/sdb',
'/dev/sdc',
'/dev/sdd',
},
},
},
'datasets': {
'tank/libvirt': {
'mountpoint': '/var/lib/libvirt',
'compression': 'on',
},
},
},
'vm': {
'cpu': 32,
'ram': 256,
},
},
}