From 8999651dd19787d18d4248bd06afe3b7ec544ad6 Mon Sep 17 00:00:00 2001 From: Michael Johnson Date: Fri, 29 Jun 2018 09:34:29 -0700 Subject: [PATCH] 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 --- playbooks/Octavia-DSVM/pre.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbooks/Octavia-DSVM/pre.yaml b/playbooks/Octavia-DSVM/pre.yaml index 1e7987cf..02dfb847 100644 --- a/playbooks/Octavia-DSVM/pre.yaml +++ b/playbooks/Octavia-DSVM/pre.yaml @@ -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