summaryrefslogtreecommitdiffstats
path: root/bifrost
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2017-12-20 16:30:04 +0000
committerMarkos Chandras <mchandras@suse.de>2017-12-20 16:30:04 +0000
commit991b389d5608c503b7e4e1d48116b52966adb482 (patch)
tree304f1c28916bfd965af9e2ec7fbda313a555cad5 /bifrost
parent460e629b50db8299e91f27216f2a5abd7995b425 (diff)
bifrost: Bump bifrost SHA
Bump the bifrost SHA so we can get rid of the testvm.xml.j2 template which has now made it upstream. Change-Id: Ia9cdd999a5702f37125d38e0ba68bb31920d2117 Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'bifrost')
-rw-r--r--bifrost/playbooks/roles/bifrost-create-vm-nodes/templates/testvm.xml.j262
1 files changed, 0 insertions, 62 deletions
diff --git a/bifrost/playbooks/roles/bifrost-create-vm-nodes/templates/testvm.xml.j2 b/bifrost/playbooks/roles/bifrost-create-vm-nodes/templates/testvm.xml.j2
deleted file mode 100644
index 15a99bfc..00000000
--- a/bifrost/playbooks/roles/bifrost-create-vm-nodes/templates/testvm.xml.j2
+++ /dev/null
@@ -1,62 +0,0 @@
-<domain type='{{ test_vm_domain_type }}'>
- <name>{{ vm_name }}</name>
- <memory unit='MiB'>{{ test_vm_memory_size }}</memory>
- <vcpu>{{ test_vm_cpu_count }}</vcpu>
- <os>
- <type arch='{{ test_vm_arch }}' machine='{{ test_vm_machine }}'>hvm</type>
- <boot dev='network'/>
- <bootmenu enable='no'/>
- <bios useserial='yes' rebootTimeout='10000'/>
- </os>
- <features>
- <acpi/>
- <apic/>
- <pae/>
- </features>
- <cpu mode='{{ test_vm_cpu }}'>
- <model fallback='allow'/>
- </cpu>
- <clock offset='utc'/>
- <on_poweroff>destroy</on_poweroff>
- <on_reboot>restart</on_reboot>
- <on_crash>restart</on_crash>
- <devices>
- <emulator>{{ test_vm_emulator }}</emulator>
- <disk type='file' device='disk'>
- <driver name='qemu' type='qcow2' cache='{{ test_vm_disk_cache }}'/>
- <source file='{{ vm_volume_path }}'/>
- <target dev='vda' bus='virtio'/>
- <address type='pci' domain='0x0000' bus='0x00' slot='0x06' function='0x0'/>
- </disk>
- <controller type='ide' index='0'>
- <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
- </controller>
- <interface type='network'>
- <source network='{{ test_vm_network }}'/>
- </interface>
- <input type='mouse' bus='ps2'/>
- <graphics type='vnc' port='-1' autoport='yes'/>
- <video>
- <model type='cirrus' vram='9216' heads='1'/>
- <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
- </video>
- <serial type='file'>
- <source path='{{ vm_log_file }}'/>
- <target port='0'/>
- <alias name='serial0'/>
- </serial>
- <serial type='pty'>
- <source path='/dev/pts/49'/>
- <target port='1'/>
- <alias name='serial1'/>
- </serial>
- <console type='file'>
- <source path='{{ vm_log_file }}'/>
- <target type='serial' port='0'/>
- <alias name='serial0'/>
- </console>
- <memballoon model='virtio'>
- <address type='pci' domain='0x0000' bus='0x00' slot='0x07' function='0x0'/>
- </memballoon>
- </devices>
-</domain>