diff options
| author | bozo.kopic <bozo.kopic@gmail.com> | 2017-07-03 02:47:27 +0200 |
|---|---|---|
| committer | bozo.kopic <bozo.kopic@gmail.com> | 2017-07-03 02:47:27 +0200 |
| commit | febfac15fa1c8342620aae16035a5a75e8a2be4b (patch) | |
| tree | f7a36e6fc7264bf34b408477789639d0c26dacb3 /playground/config/domain.xml | |
| parent | c75e05b2fcbd08ec77a2ac85837f9f58829a44f6 (diff) | |
playground - testing executor functionality
Diffstat (limited to 'playground/config/domain.xml')
| -rw-r--r-- | playground/config/domain.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/playground/config/domain.xml b/playground/config/domain.xml new file mode 100644 index 0000000..7091c12 --- /dev/null +++ b/playground/config/domain.xml @@ -0,0 +1,34 @@ +<domain type='kvm'> + <name>archlinux</name> + <os> + <type>hvm</type> + <boot dev='hd'/> + </os> + <on_poweroff>destroy</on_poweroff> + <on_reboot>restart</on_reboot> + <on_crash>destroy</on_crash> + <memory unit="G">1</memory> + <pm> + <suspend-to-mem enabled='no'/> + <suspend-to-disk enabled='no'/> + </pm> + <features> + <acpi/> + <apic/> + </features> + <clock offset='utc'/> + <devices> + <emulator>/usr/bin/qemu-system-x86_64</emulator> + <disk type='file'> + <driver name='qemu' type='qcow2'/> + <source file='/srv/libvirt/archlinux.qcow2'/> + <target dev='hda' bus='virtio'/> + </disk> + <interface type='network'> + <source network="default"/> + </interface> + <video> + <model type='vga' vram='65536' heads='1'/> + </video> + </devices> +</domain> |
