From 9d7c14295e00f6991922d24c166a553cedac79a0 Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Thu, 6 Sep 2018 12:58:02 -0700 Subject: [PATCH] Disable KVM at limestone (again) There appears to be a kernel regression that is leading to KVM failures again. This patch adds limestone to the exclusion list based on job failures[1]. [1] http://logs.openstack.org/32/600332/3/check/octavia-v1-dsvm-scenario/ \ 467a1e6/logs/libvirt/qemu/instance-00000001.txt.gz Change-Id: I356c32c27f9803226e9a449c2f81aa1d04af9671 --- octavia/tests/contrib/gate_hook.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/octavia/tests/contrib/gate_hook.sh b/octavia/tests/contrib/gate_hook.sh index 570fe45fe6..063463c7ca 100755 --- a/octavia/tests/contrib/gate_hook.sh +++ b/octavia/tests/contrib/gate_hook.sh @@ -25,11 +25,11 @@ export DEVSTACK_LOCAL_CONFIG+=$'\n'"LIBS_FROM_GIT+=,diskimage-builder"$'\n' # Sort out our gate args . $(dirname "$0")/decode_args.sh -# Note: The check for OVH instances is temporary until they +# Note: The check for OVH and limestone instances is temporary until they # 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" ]]; then +if $(egrep --quiet '(vmx|svm)' /proc/cpuinfo) && [[ ( ! $(hostname) =~ "ovh" && ! $(hostname) =~ "limestone" ) ]]; then export DEVSTACK_GATE_LIBVIRT_TYPE=kvm fi