Exclude limestone from running with kvm

Hosts from limestone are also showing the qemu crash issue[1] when
using kvm. This patch excludes these hosts from running with kvm.

[1] https://bugzilla.kernel.org/show_bug.cgi?id=192521

Change-Id: I2ec6ef9512ee7c96879306df5df0b4adbb604692
This commit is contained in:
Michael Johnson 2018-06-17 15:44:16 -07:00
parent 90444fd11f
commit 723228c2e1
1 changed files with 3 additions and 3 deletions

View File

@ -27,11 +27,11 @@ enable_plugin barbican https://git.openstack.org/openstack/barbican
# Sort out our gate args
. $(dirname "$0")/decode_args.sh
# Note: The check for OVH instances is temporary until they resolve the
# KVM failures as logged here:
# 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