21 lines
457 B
YAML
21 lines
457 B
YAML
---
|
|
- name: Test QEMU
|
|
hosts: localhost
|
|
become: true
|
|
tasks:
|
|
- name: Deploy test vm
|
|
community.libvirt.virt:
|
|
name: test
|
|
state: running
|
|
persistent: true
|
|
memory: 4096
|
|
vcpus: 1
|
|
os_type: linux
|
|
disks:
|
|
- name: test
|
|
size: 8
|
|
format: qcow2
|
|
cdrom:
|
|
- url: https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-12.7.0-amd64-netinst.iso
|
|
|