domain.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <domain type='kvm' id='8'>
  2. <name>{{ item }}</name>
  3. <memory unit='MiB'>{{ libvirt_instance_memory_mib }}</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. <vcpu placement='static'>{{ libvirt_instance_vcpu }}</vcpu>
  13. <os>
  14. <type arch='x86_64' machine='pc'>hvm</type>
  15. <boot dev='hd'/>
  16. </os>
  17. <features>
  18. <acpi/>
  19. <apic/>
  20. <pae/>
  21. </features>
  22. <cpu mode='host-model'>
  23. <model fallback='allow'/>
  24. </cpu>
  25. <clock offset='utc'>
  26. <timer name='rtc' tickpolicy='catchup'/>
  27. <timer name='pit' tickpolicy='delay'/>
  28. <timer name='hpet' present='no'/>
  29. </clock>
  30. <on_poweroff>destroy</on_poweroff>
  31. <on_reboot>restart</on_reboot>
  32. <on_crash>restart</on_crash>
  33. <devices>
  34. <emulator>/usr/bin/qemu-system-x86_64</emulator>
  35. <disk type='file' device='disk'>
  36. <driver name='qemu' type='qcow2' discard='unmap'/>
  37. <source file='{{ libvirt_storage_pool_path }}/{{ item }}.qcow2'/>
  38. <target dev='sda' bus='scsi'/>
  39. </disk>
  40. <disk type='file' device='disk'>
  41. <driver name='qemu' type='qcow2' discard='unmap'/>
  42. <source file='{{ libvirt_storage_pool_path }}/{{ item }}-docker.qcow2'/>
  43. <target dev='sdb' bus='scsi'/>
  44. </disk>
  45. <disk type='file' device='cdrom'>
  46. <driver name='qemu' type='raw'/>
  47. <source file='{{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'/>
  48. <target dev='sdc' bus='scsi'/>
  49. <readonly/>
  50. </disk>
  51. <controller type='scsi' model='virtio-scsi' />
  52. <interface type='network'>
  53. <source network='{{ libvirt_network }}'/>
  54. <model type='virtio'/>
  55. </interface>
  56. <serial type='pty'>
  57. <target port='0'/>
  58. </serial>
  59. <console type='pty'>
  60. <target type='serial' port='0'/>
  61. </console>
  62. <memballoon model='virtio'>
  63. </memballoon>
  64. </devices>
  65. </domain>