domain.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <domain type='kvm' id='8'>
  2. <name>{{ item }}</name>
  3. <memory unit='GiB'>1</memory>
  4. <currentMemory unit='GiB'>1</currentMemory>
  5. <vcpu placement='static'>2</vcpu>
  6. <os>
  7. <type arch='x86_64' machine='pc'>hvm</type>
  8. <boot dev='hd'/>
  9. </os>
  10. <features>
  11. <acpi/>
  12. <apic/>
  13. <pae/>
  14. </features>
  15. <clock offset='utc'>
  16. <timer name='rtc' tickpolicy='catchup'/>
  17. <timer name='pit' tickpolicy='delay'/>
  18. <timer name='hpet' present='no'/>
  19. </clock>
  20. <on_poweroff>destroy</on_poweroff>
  21. <on_reboot>restart</on_reboot>
  22. <on_crash>restart</on_crash>
  23. <devices>
  24. <emulator>/usr/bin/qemu-system-x86_64</emulator>
  25. <disk type='file' device='disk'>
  26. <driver name='qemu' type='qcow2'/>
  27. <source file='{{ libvirt_storage_pool_path }}/{{ item }}.qcow2'/>
  28. <target dev='vda' bus='virtio'/>
  29. </disk>
  30. <disk type='file' device='cdrom'>
  31. <driver name='qemu' type='raw'/>
  32. <source file='{{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'/>
  33. <target dev='vdb' bus='virtio'/>
  34. <readonly/>
  35. </disk>
  36. <controller type='usb' index='0' />
  37. <interface type='network'>
  38. <source network='default'/>
  39. <model type='virtio'/>
  40. </interface>
  41. <serial type='pty'>
  42. <target port='0'/>
  43. </serial>
  44. <console type='pty'>
  45. <target type='serial' port='0'/>
  46. </console>
  47. <channel type='spicevmc'>
  48. <target type='virtio' name='com.redhat.spice.0'/>
  49. </channel>
  50. <input type='tablet' bus='usb' />
  51. <input type='mouse' bus='ps2'/>
  52. <input type='keyboard' bus='ps2'/>
  53. <graphics type='spice' autoport='yes' />
  54. <video>
  55. <model type='qxl' ram='65536' vram='65536' vgamem='16384' heads='1'/>
  56. </video>
  57. <redirdev bus='usb' type='spicevmc'>
  58. </redirdev>
  59. <memballoon model='virtio'>
  60. </memballoon>
  61. </devices>
  62. </domain>