bundlewrap/nodes/rx300.py
Franzi 6a6a9748b4
All checks were successful
bundlewrap/pipeline/head This commit looks good
nodes/rx300: add info about grub configuration
2020-11-08 15:05:17 +01:00

39 lines
945 B
Python

# 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"
nodes['rx300'] = {
'hostname': '172.19.138.26',
'bundles': {
'zfs',
},
'groups': set(),
'metadata': {
'zfs': {
'module_options': {
'zfs_arc_max_mb': 16384, # 16GB
},
'pools': {
'tank': {
'raidz': {
'/dev/sda',
'/dev/sdb',
'/dev/sdc',
'/dev/sdd',
},
},
},
},
'vm': {
'cpu': 32,
'ram': 378,
},
},
'os': 'debian',
'os_version': (10,),
}