Skip to main content

Configuration

Examples

You can check configuration examples to start with :

The configuration definition consists in a configuration version and a list of hosts :

ConfigurationMandatoryTypeDefault ValueDescription
versionYesStringNoneVersion of Freyja
hosts.[]YesListNoneConfigure each VM host you want to create

For each host, you may configure :

ConfigurationMandatoryTypeDefault ValueDescription
imageYesStringNonePath of the image file to create your VM host.
osYesStringNoneName of the OS to create your VM host. It MUST match the OS of the image file. Use the command osinfo-query os to get the list of the accepted OS names. Example : centos8.
hostnameYesStringNoneName of the VM host. It MUST NOT contain underscores.
networksNoList[Object]defaultList of networks. Each one of them will be used to create a new interface if it does not exist. You MUST configure at least one network.
networks[].nameYes for sectionStringdefaultThe name of the network.
networks[].addressYes for sectionStringChoosed by libvirt / external DHCPMAC address of the current network for this host.
usersNoList[Object]freyja:masterList of users. If none, a default freyja:master user is created without an authorized ssh key
users[].usernameNoStringfreyjaUsername to log into the created VM host.
users[].passwordNoStringmasterSHA2 hashed password to log into the created VM host. Use command mkpasswd -m sha-512 to hash the password
users[].keys[]NoList[String]NonePath to authorized ssh keys for this user.
users[].groups[]NoList[String]NoneAdd the user into these configured groups.
diskNoInteger30Size of the VM disk in GigaBytes.
memoryNoInteger4096Size of the VM memory in MegaBytes.
vcpusNoInteger2Number of VCPUS of the VM.
packagesNoList[String]NoneAdditional packages to install during VM startup
runcmdNoList[String]NoneAdditional commands to run for the first boot of the machine
write-filesNoList[Object]NoneAdditional files to write on machines at boot
write-files.sourceYes for sectionStringNoneSource file with content to write on the machine
write-files.destinationYes for sectionStringNoneDestination file on machine to write with the content of the source file
write-files.permissionsNoString0600Permissions of the destination file on the machine
write-files.ownerNoStringroot:rootOwner of the destination file on the machine. Format is user:group.
ignitionNoObjectNoneIf enabled, triggers the ignition provisioning file generation and disable the default cloud-init provisioning. Then starts the VMs with ignition provisioning.
ignition.versionYes for sectionStringNoneIgnition version supported by the os. Make sure this version fits with the os version for compatibility concerns.
ignition.fileNoStringNoneIgnition file path for VM provisioning. If provided, this file will override the generated ignition provisioning file with its own content.