python-compute/config.toml

30 lines
465 B
TOML
Raw Normal View History

2023-07-22 23:59:49 +03:00
[libvirt]
2023-09-23 21:24:56 +03:00
uri = 'qemu:///system'
2023-07-22 23:59:49 +03:00
[logging]
level = 'INFO'
2023-08-27 23:42:56 +03:00
driver = 'file'
2023-09-23 21:24:56 +03:00
file = '/var/log/compute/compute.log'
2023-07-22 23:59:49 +03:00
2023-08-27 23:42:56 +03:00
[[storages.pools]]
2023-07-22 23:59:49 +03:00
name = 'ssd-nvme'
enabled = true
default = true
2023-09-23 21:24:56 +03:00
path = '/vm-volumes/ssd-nvme'
2023-07-22 23:59:49 +03:00
2023-08-27 23:42:56 +03:00
[[storages.pools]]
2023-07-22 23:59:49 +03:00
name = 'hdd'
enabled = true
2023-09-23 21:24:56 +03:00
path = '/vm-volumes/hdd'
2023-07-22 23:59:49 +03:00
2023-08-27 23:42:56 +03:00
[[storages.pools]]
name = 'images'
enabled = true
2023-09-23 21:24:56 +03:00
path = '/vm-images/vendor'
2023-08-27 23:42:56 +03:00
[virtual_machine.defaults]
autostart = true
start = true
2023-07-28 01:01:32 +03:00
cpu_vendor = 'Intel'
cpu_model = 'Broadwell'