forked from YADRO-KNS/ktest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm.xml
31 lines (31 loc) · 819 Bytes
/
vm.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<domain type='kvm'>
<name>NAME</name>
<os>
<type>hvm</type>
<kernel>KERNEL</kernel>
<initrd>INITRD</initrd>
<cmdline>CMDLINE</cmdline>
</os>
<features>
<acpi/>
<apic/>
</features>
<memory unit='MB'>TBD</memory>
<devices>
<serial type='pty'>
<target port='0'/>
</serial>
<channel type="tcp">
<source mode="bind" host="0.0.0.0" service="TBD"/>
<protocol type="raw"/>
<target type="virtio" name="org.ktest.channel.0"/>
</channel>
<console type='pty'>
<target type='serial' port='0'/>
</console>
<controller type='scsi' index='0' model='virtio-scsi'/>
<rng model='virtio'>
<backend model='random'>/dev/random</backend>
</rng>
</devices>
</domain>