bifrost-create-vm-nodes: Do not use KVM VMs by default

The default option is to not use KVM for virtual machines but CentOS is
overriding that and uses KVM as the default option. This leads to
inconsistencies and causes some issues when testing bifrost on
hypervisors which do not support nested virtualization (ie virtualbox)
so use the qemu-system-x86_64 emulator instead which does not use KVM
but dynamic binary translation instead.

Change-Id: I18dab3e74d1395a6c7d129701907424efaa5f735
This commit is contained in:
Markos Chandras 2017-07-24 15:59:09 +01:00
parent 971b17bbfb
commit bc5ee8d500
1 changed files with 2 additions and 2 deletions

View File

@ -6,6 +6,7 @@ required_packages:
- qemu-kvm-tools
- qemu-kvm
- qemu-kvm-common
- qemu-system-x86
- sgabios
- sgabios-bin
- libvirt
@ -24,5 +25,4 @@ required_packages:
- python-lxml
- pkgconfig
- libvirt-devel
test_vm_machine: "pc"
test_vm_emulator: "/usr/libexec/qemu-kvm"
test_vm_emulator: "/bin/qemu-system-x86_64"