Re-enable KVM

A recent kernel update in the nodepool images has resolved the issue
we were seeing with using KVM on some hosting providers.
This patch removes the exclusion for those hosting providers and
allows the neutron-lbaas gates to use KVM if it is available on the host.

Change-Id: I660f2cc915819a6181bfc25145bc567bf981bc53
This commit is contained in:
Michael Johnson 2018-06-29 09:35:46 -07:00
parent ad3453b90c
commit fd55125641
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ enable_plugin barbican https://git.openstack.org/openstack/barbican
# resolve the KVM failures as logged here:
# https://bugzilla.kernel.org/show_bug.cgi?id=192521
# However, this may be resolved at OVH before the kernel bug is resolved.
if $(egrep --quiet '(vmx|svm)' /proc/cpuinfo) && [[ ( ! $(hostname) =~ "ovh" || ! $(hostname) =~ "limestone" ) ]]; then
if egrep --quiet '(vmx|svm)' /proc/cpuinfo; then
export DEVSTACK_GATE_LIBVIRT_TYPE=kvm
fi