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: Ibd726a831db4988ab1820084b2683c38a852ce93
This commit is contained in:
Michael Johnson 2018-06-29 09:34:29 -07:00
parent 74617dabff
commit 8999651dd1
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
cmd: |
set -e
set -x
if $(egrep --quiet '(vmx|svm)' /proc/cpuinfo) && [[ ! $(hostname) =~ "ovh" ]]; then
if egrep --quiet '(vmx|svm)' /proc/cpuinfo; then
export DEVSTACK_GATE_LIBVIRT_TYPE=kvm
fi