From 16cb3603b8309e23f618a4c73acfa29b47d6c5b1 Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Fri, 29 Jun 2018 09:31:44 -0700 Subject: [PATCH] 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 --- octavia/tests/contrib/gate_hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octavia/tests/contrib/gate_hook.sh b/octavia/tests/contrib/gate_hook.sh index 2cf6dfdda5..4d15e94a41 100755 --- a/octavia/tests/contrib/gate_hook.sh +++ b/octavia/tests/contrib/gate_hook.sh @@ -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