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: I91782536599fc28f2824a5dcc1483be46904ce56
This commit is contained in:
Michael Johnson 2018-09-06 12:33:26 -07:00
parent b5690471c3
commit cafb606023
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
cmd: |
set -e
set -x
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