Disable KVM at OVH

OVH infra hosts are causing "KVM: entry failed, hardware error 0x0"
failures where instances fail to start (cirros, etc.).
This patch excludes OVH instances from kvm enablement until the issue is
resolved.

Change-Id: I4d0183d68c80de6836f00a44f991bd773bdeb1db
This commit is contained in:
Michael Johnson 2018-08-19 13:48:09 -07:00
parent 46d148b2b0
commit b11610699c
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ enable_plugin barbican https://git.openstack.org/openstack/barbican
# 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; then
if $(egrep --quiet '(vmx|svm)' /proc/cpuinfo) && [[ ! $(hostname) =~ "ovh" ]]; then
export DEVSTACK_GATE_LIBVIRT_TYPE=kvm
fi