Multiple attempted fixes

This commit is contained in:
2026-06-10 23:15:40 +02:00
parent e40d91eb16
commit add0a7f2c2
3 changed files with 6 additions and 5 deletions
@@ -1,6 +1,6 @@
{ {
"ignition": { "ignition": {
"version": "3.3.0" "version": "3.0.0"
}, },
"passwd": { "passwd": {
"users": [ "users": [
@@ -48,7 +48,8 @@
- name: Remove existing VM definition - name: Remove existing VM definition
shell: | shell: |
virsh destroy {{ vm_name }} || true virsh destroy {{ vm_name }} || true
virsh undefine {{ vm_name }} || true virsh undefine {{ vm_name }} --nvram || true
rm -f /etc/libvirt/qemu/{{ vm_name }}.xml
become: yes become: yes
- name: Provision VM using virt-install - name: Provision VM using virt-install
+3 -3
View File
@@ -11,15 +11,15 @@ vms:
- name: flatcar-vm - name: flatcar-vm
os_type: flatcar os_type: flatcar
os_variant: "fedora-coreos-stable" os_variant: "fedora-coreos-stable"
disk_bus: "sata" disk_bus: "virtio"
cpu: 2 cpu: 2
ram: 2048 ram: 2048
disk: "20G" disk: "20G"
- name: microos-vm - name: microos-vm
os_type: microos os_type: microos
os_variant: "opensusemicroos" os_variant: "generic"
disk_bus: "sata" disk_bus: "virtio"
cpu: 2 cpu: 2
ram: 2048 ram: 2048
disk: "20G" disk: "20G"