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 Octavia gates to use KVM if it is available on the host.

Change-Id: I980cdbc67d6e7b3a8a2520b2279ff3a1cdf68c4b
This commit is contained in:
Michael Johnson 2018-06-29 09:31:44 -07:00
parent 3d545ab1b6
commit 16cb3603b8
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ export DEVSTACK_LOCAL_CONFIG+=$'\n'"LIBS_FROM_GIT+=,diskimage-builder"$'\n'
# 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