maas-autobuilder/configs/default.config
Arif Ali 577be01157
Updates with some fine tuning
* Add openvswitch support
* Fine tuning of jq commands
2022-10-30 19:17:51 +00:00

80 lines
1.5 KiB
Plaintext

external_vlan=1
qemu_password="SgUoBByKjG9Lj78SwfWAHXD8DvgE67Cu"
virsh_user="virsh"
storage_path="/var/lib/libvirt/maas-images"
ceph_storage_path="/var/lib/libvirt/ceph-maas-images"
# Node prefix for all the nodes except for juju
compute="maas-node"
# To enable or disable uEFI for VMs
enable_uefi="false"
# To enable secureboot for VMs
# This in-advertantly enables uEFI
# EXPERIMENTAL/TESTING
enable_secureboot="false"
# Juju node count and definition
juju_count=1
juju_cpus=2
juju_ram=4096
juju_disk=20
# Control node count and definition
control_count=2
control_cpus=3
control_ram=16384
# Compute node definition
node_start=1
node_cpus=2
node_ram=4096
# Disks to create on each VM
disks=()
disks+=(150)
disks+=(20)
disks+=(20)
# The network type, you have to options, bridge and network
# Bridge, will then assign each interface to the bridged identified in
# the bridges array.
# Network, will assign each interface to the virsh network that has been
# defined in the networks array.
network_type=bridge
bridge_type=ovs
# The vlans for each of the bridges if that is defined.
vlans=()
vlans+=(300)
vlans+=(301)
vlans+=(302)
vlans+=(303)
vlans+=(304)
vlans+=(305)
vlans+=(1)
# The bridges by default that will be used
bridges=()
bridges+=("br0")
bridges+=("br1")
bridges+=("br2")
bridges+=("br3")
bridges+=("br4")
bridges+=("br5")
bridges+=("br6")
# The subnets
subnets=()
subnets+=("10.0.1")
subnets+=("10.0.2")
subnets+=("10.0.3")
subnets+=("10.0.4")
subnets+=("10.0.5")
subnets+=("10.0.6")
subnets+=("192.168.1")