domain.xml 2.1 KB

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