Ansible Role linuxfabrik.lfops.kvm_vm¶
This role creates and manages virtual machines (VMs) on a KVM host.
The boot disk comes from one of three sources, and which of these variables you set is what selects the behaviour:
kvm_vm__base_image: derive the boot disk from a prepared OS image and boot it. cloud-init provides the SSH keys and the root password.kvm_vm__install_location: create a blank boot disk and run an installer (Kickstart, Preseed, Autoinstall) from an ISO or install tree.kvm_vm__existing_boot_disk: attach a disk that already exists instead of creating one. No disk is created, sokvm_vm__base_imageis not used.
Available since LFOps 2.0.0.
How the Role Behaves¶
Three scenarios, all built from the same variables.
1. Run a prepared cloud image. The boot disk is a copy-on-write copy of kvm_vm__base_image, virt-customize adds kvm_vm__packages, virt-sysprep cleans it, and a cloud-init cidata ISO carries the SSH keys and root password into the VM on first boot.
kvm_vm__base_image: 'rocky10-uefi-cloud-cis-shrinked-2026081301.qcow2'
kvm_vm__boot: 'uefi'
kvm_vm__boot_disk_size: '20G'
kvm_vm__host: 'kvm-host.example.com'
kvm_vm__machine: 'q35'
kvm_vm__memory: 4096
kvm_vm__network_connections:
- network_name: 'default'
kvm_vm__ssh_authorized_keys:
- 'ssh-ed25519 AAAAC3Nza... linuxfabrik'
kvm_vm__vcpus: 2
2. Install a VM from an ISO. Swap kvm_vm__base_image for kvm_vm__install_location and kvm_vm__install_extra_args. The boot disk is blank, virt-install boots the installer and passes the extra arguments on the kernel command line. The role waits for the installation to finish, then starts the VM.
kvm_vm__boot: 'uefi'
kvm_vm__boot_disk_size: '20G'
kvm_vm__host: 'kvm-host.example.com'
kvm_vm__install_extra_args: 'inst.ks=https://linuxfabrik.ch/ks lftype=cis console=ttyS0,115200n8'
kvm_vm__install_location: '/var/lib/libvirt/images/Rocky-10.2-x86_64-dvd1.iso'
kvm_vm__machine: 'q35'
kvm_vm__memory: 4096
kvm_vm__network_connections:
- network_name: 'default'
kvm_vm__vcpus: 2
No kvm_vm__ssh_authorized_keys and no cloud-init here: the Linuxfabrik Kickstart installs the SSH keys and a password for the linuxfabrik user itself. Use lftype=cis or lftype=minimal here. lftype=cloud and lftype=cloud-cis deliberately leave that user locked with no keys, because they are meant to be seeded by cloud-init later, so a VM installed from them is unreachable.
For a static address, append the installer's own syntax to kvm_vm__install_extra_args, for example ip=192.0.2.5::192.0.2.1:255.255.255.0:vm1:enp1s0:none nameserver=192.0.2.53 for Anaconda.
3. Build a cloud image. Scenario 2 plus three variables, so that the VM is never started and virt-sysprep runs once the installation has finished. The resulting boot disk is the artifact, to be shrunk and compressed afterwards.
kvm_vm__autostart: false
kvm_vm__boot: 'uefi'
kvm_vm__boot_disk_size: '20G'
kvm_vm__host: 'kvm-host.example.com'
kvm_vm__install_extra_args: 'inst.ks=https://linuxfabrik.ch/ks lftype=cloud-cis console=ttyS0,115200n8'
kvm_vm__install_location: '/var/lib/libvirt/images/Rocky-10.2-x86_64-dvd1.iso'
kvm_vm__machine: 'q35'
kvm_vm__memory: 4096
kvm_vm__network_connections:
- network_name: 'default'
kvm_vm__skip_sysprep: false
kvm_vm__state: 'shutdown'
kvm_vm__vcpus: 2
Re-running this changes nothing: the boot disk exists and the VM is still defined, so the installation is not repeated. To build the next image, remove the VM with kvm_vm__state: 'absent' first. That deletes the boot disk as well, so copy the artifact out beforehand.
Requirements¶
- Python 3, and the python3-libvirt and python3-lxml modules must be installed on the KVM host (role: linuxfabrik.lfops.python).
Manual steps:
- Set up the KVM host first by running the kvm_host playbook (role: linuxfabrik.lfops.kvm_host), which installs Python 3 and the required libvirt/lxml modules on the host.
- Place the base image in the
kvm_vm__poolon the KVM host. Ifkvm_vm__poolisdefault, you get the storage path by runningvirsh pool-dumpxml default | grep -i pathon the KVM host. Only required when usingkvm_vm__base_image. - When using
kvm_vm__install_location, the ISO has to be readable on the KVM host, or the install tree has to be reachable from it.
Tags¶
kvm_vm
- Creates and manages the virtual machine.
- Triggers: none.
kvm_vm:additional_disks
- Creates additional disks. Note that you need to manually attach them to the VM if the VM already exists.
- Triggers: none.
kvm_vm:resize_disks
- Resizes boot and additional disks. If the VM is running, also performs a live
virsh blockresize. - Triggers: none.
kvm_vm:state
- Sets the state of the VM.
- Triggers: none.
Mandatory Role Variables¶
kvm_vm__base_image
- The base image file which will be used for the VM. Has to be placed in the
kvm_vm__poolstorage pool. - Mandatory unless
kvm_vm__install_locationorkvm_vm__existing_boot_diskis set. Mutually exclusive withkvm_vm__install_location. - Type: String.
kvm_vm__boot_disk_size
- The size of the boot disk. On initial creation this is required since we are using a base image. On subsequent runs the boot disk will be grown to this size if it is currently smaller (live resize via
virsh blockresizeis performed when the VM is running). Shrinking is never attempted. Should either be in bytes, or given using an optional suffix: k or K (kilobyte, 1024), M (megabyte, 1024k) and G (gigabyte, 1024M) and T (terabyte, 1024G) are supported. b is ignored. - Type: String.
kvm_vm__host
- The KVM host. Will be used in
delegate_tostatements, meaning the host should either be in the ansible inventory or reachable via the given value. - Type: String.
kvm_vm__install_location
- Path to an ISO or URL of an install tree to install the VM from, handed to
virt-install --location.virt-installboots the extracted kernel and initrd and attaches the ISO as a CD-ROM, so an installer configuration that reads from the installation media works unchanged. - Setting this creates a blank boot disk of
kvm_vm__boot_disk_sizeinstead of deriving one from a base image. - Mandatory unless
kvm_vm__base_imageorkvm_vm__existing_boot_diskis set. Mutually exclusive withkvm_vm__base_image. - Type: String.
kvm_vm__memory
- Memory to allocate for the VM, in MiB.
- Type: Number.
kvm_vm__vcpus
- Number of virtual cpus to configure for the VM.
- Type: Number.
Example:
# mandatory
kvm_vm__base_image: 'rocky8-base-image.qcow2'
kvm_vm__boot_disk_size: '50G'
kvm_vm__host: 'kvm-host.example.com'
kvm_vm__memory: 2048
kvm_vm__vcpus: 2
Optional Role Variables¶
kvm_vm__additional_disks
- A list of additional disks. They will be created in the
kvm_vm__poolif they do not exist already. Note: the disk will only be attached to the VM during VM creation, not during subsequent runs. On subsequent runs, existing disks will be grown ifsizeis larger than the current size (live resize viavirsh blockresizeis performed when the VM is running). Shrinking is never attempted. -
Subkeys:
-
name:- Mandatory. The name of the disk. Will be prepended with the
kvm_vm__nameand suffixed with.qcow2. - Type: String.
- Mandatory. The name of the disk. Will be prepended with the
-
size:- Mandatory. The size of the disk, in the same format as
kvm_vm__boot_disk_size. - Type: String.
- Mandatory. The size of the disk, in the same format as
-
pool:- Optional. Storage pool of the disk.
- Type: String.
-
-
Type: List of dictionaries.
- Default:
[]
kvm_vm__autostart
- Whether the VM should be started on host boot up or not.
- Type: Bool.
- Default:
true
kvm_vm__boot
- See
man virt-installfor details on--boot. - Type: String.
- Default:
''
kvm_vm__connect_url
- URL for connecting to the hypervisor on the
kvm_vm__host. - Type: String.
- Default:
'qemu:///system'
kvm_vm__existing_additional_disks
- A list of existing additional disks. They will not be modified, only added to the VM during creation. The disk have to be placed in the
kvm_vm__poolstorage pool. - Type: List.
- Default:
[]
kvm_vm__existing_boot_disk
- This allows to provide an already existing boot image, skipping the usage of a base image, and any modification to the disk. The disk has to be placed in the
kvm_vm__poolstorage pool. - Type: String.
- Default: unset
kvm_vm__install_extra_args
- Kernel command line handed to the installer via
virt-install --extra-args, for exampleinst.ks=https://linuxfabrik.ch/ks lftype=cis console=ttyS0,115200n8for Anaconda. Only has an effect whenkvm_vm__install_locationis set. - The syntax is the installer's, not the role's. Anaconda, Debian Installer and Ubuntu Autoinstall each expect their own options, also for static network configuration.
- Type: String.
- Default:
''
kvm_vm__machine
- The machine type to emulate.
- Type: String.
- Default: unset
kvm_vm__max_memory
- The run time maximum memory allocation of the VM. This is the maximum amount of memory that can be hot-plugged.
- Type: Number.
- Default:
'{{ kvm_vm__memory }}'
kvm_vm__name
- The domain name of the VM.
- Type: String.
- Default:
'{{ inventory_hostname }}'
kvm_vm__network_connections
- List of dictionaries of network connections to configure. Currently only supports ethernet devices (no bond/bridges/vlans).
-
Subkeys:
-
name:- Mandatory. Name of the network interface.
- Type: String.
-
mac:- Optional. MAC of the interface. Defaults to a randomly generated MAC starting with
52:54:. - Type: String.
- Optional. MAC of the interface. Defaults to a randomly generated MAC starting with
-
addresses:- Optional. List of IP addresses to assign.
- Type: List.
-
dhcp4:- Optional. If dhcp for IPv4 should be enabled or not.
- Type: Bool.
- Default:
false
-
dhcp6:- Optional. If dhcp for IPv6 should be enabled or not.
- Type: Bool.
- Default:
false
-
gateway4:- Optional. IPv4 Gateway. Requires setting
addresses. - Type: String.
- Optional. IPv4 Gateway. Requires setting
-
gateway6:- Optional. IPv6 Gateway. Requires setting
addresses. - Type: String.
- Optional. IPv6 Gateway. Requires setting
-
network_type:- Optional. Libvirt Network type. Either
'bridge'or'network'. - Type: String.
- Default:
'network'
- Optional. Libvirt Network type. Either
-
network_name:- Optional. Libvirt Network name. This is either the name of the bridge or of the virtual network.
- Type: String.
- Default:
'default'
-
-
Type: List of dictionaries.
- Default:
[]
kvm_vm__osinfo
- Set the operating system of the VM, will be used to optimise the guest configuration. Have a look at
man virt-install. - Type: String.
- Default:
'detect=on'
kvm_vm__packages
- A list of packages which will be injected into the image using
virt-customize. - Type: List.
- Default:
```yaml
kvm_vm__packages:
- 'cloud-init'
- 'qemu-guest-agent' ```
kvm_vm__pool
- The KVM storage pool for the base image and disks.
- Type: String.
- Default:
'default'
kvm_vm__root_password
- The root password of the VM.
- Type: String.
- Default: unset
kvm_vm__skip_cloud_init
- Do not build a cloud-init
cidataISO fromkvm_vm__ssh_authorized_keysand the network settings, and do not attach it to the VM. - Set this when installing from
kvm_vm__install_location. The installer sets up users and network itself, and withlftype=cisorlftype=minimalthe installed system has no cloud-init at all, so the ISO would never be read. - Type: Bool.
- Default:
false, ortrueifkvm_vm__install_locationis set.
kvm_vm__skip_sysprep
- Do not run
virt-sysprepon the boot disk. Without this,virt-sysprepruns once the boot disk content is final: right after the disk is derived fromkvm_vm__base_image, or right after the installation finished when installing fromkvm_vm__install_location. - Set this for a VM installed from an ISO that you intend to use directly.
virt-sysprepremoves.sshdirectories (ssh-userdiris one of its default operations), which deletes the keys the installer put in place and leaves the VM unreachable. Running it is meant for the image-building case, where cloud-init provides the keys later. - Type: Bool.
- Default:
false, ortrueifkvm_vm__install_locationis set.
kvm_vm__ssh_authorized_keys
- A list of keys which will be authorized to connect to the VM via SSH.
- Type: List.
- Default:
[]
kvm_vm__state
-
The state of the VM. Possible options:
'absent': Use with caution. Destroys the VM and deletes all storage volumes.'destroyed': "hard shutdown". Immediately terminates the VM. Does not delete any storage volumes.'paused': Suspends the VM. It is kept in memory but won't be scheduled anymore.'running''shutdown': Gracefully shuts down the VM.
-
Type: String.
- Default:
'running'
kvm_vm__wait
- Minutes
virt-installwaits for the installation to finish,-1waits indefinitely. Only has an effect whenkvm_vm__install_locationis set. - Type: Number.
- Default:
-1
Example:
# optional
kvm_vm__additional_disks:
- name: 'disk1'
size: '10G'
pool: 'data1'
kvm_vm__autostart: true
# a more complex `--boot` parameter: boot using UEFI, but without Secure Boot (paths valid for RHEL)
kvm_vm__boot: 'loader=/usr/share/OVMF/OVMF_CODE.secboot.fd,loader.readonly=yes,loader.type=pflash,nvram.template=/usr/share/OVMF/OVMF_VARS.fd,loader_secure=no'
kvm_vm__existing_additional_disks:
- 'vm1-existing-disk1.qcow2'
- 'vm1-existing-disk2.qcow2'
kvm_vm__existing_boot_disk: 'vm1-existing-boot.qcow2'
kvm_vm__connect_url: 'qemu:///system'
kvm_vm__install_extra_args: 'inst.ks=https://linuxfabrik.ch/ks lftype=cis console=ttyS0,115200n8'
kvm_vm__install_location: '/var/lib/libvirt/images/Rocky-10.2-x86_64-dvd1.iso'
kvm_vm__machine: 'q35'
kvm_vm__max_memory: '{{ kvm_vm__memory }}'
kvm_vm__name: '{{ inventory_hostname }}'
kvm_vm__network_connections:
- name: 'eth0'
addresses:
- '192.0.2.2'
gateway4: '192.0.2.1'
kvm_vm__osinfo: 'detect=on'
kvm_vm__packages:
- 'cloud-init'
- 'qemu-guest-agent'
kvm_vm__pool: 'default'
kvm_vm__root_password: 'linuxfabrik'
kvm_vm__skip_cloud_init: false
kvm_vm__skip_sysprep: false
kvm_vm__ssh_authorized_keys: []
kvm_vm__state: 'running'
kvm_vm__wait: -1