1
0
IaC/ansible/roles/vm_deploy/defaults/main.yml
2022-10-24 15:50:38 +13:00

19 lines
552 B
YAML

---
vm_name_prefix: "kube"
vm_name_suffixes: ["01","02","03"]
vhd_template: "kube_template_vda.qcow2"
root_vhd_pool_dir: "/vhds" # No trailing /
data_vhd_pool_dir:
fw_vars_pool_dir: "/var/lib/libvirt/qemu/nvram" # No trailing /
vm_memory: "16"
vm_cpu: "4"
vm_cpu_cores: "2"
vm_cpu_threads: "2"
vm_bridge: "br1"
vm_mac_prefix: "52:54:00:e3:af:"
vm_subnet_prefix: "192.168.199.1" # vm suffix will be appended to this
vm_subnet_suffix: "/24"
vm_gateway: "192.168.199.254"
vm_domain: "balsillie.net"
vm_machine_type: "pc-q35-7.1"
vm_machine_arch: "x86_64"