Work around nested virt issues on OVH test nodes

OVH nodepool nodes have an issue which causes nested virt
instances to crash with a hardware error, then a dump.
We therefore detect whether we're running on OVH and
force it to use qemu instead.

Change-Id: I54681092adf9c0647bf65583176ddc21c99494f3
(cherry picked from commit cc98ed84f1)
This commit is contained in:
Jesse Pretorius 2018-04-04 17:49:48 +01:00
parent 7f06340231
commit 05d49e77f8
1 changed files with 7 additions and 0 deletions

View File

@ -62,12 +62,19 @@
path: /etc/nodepool
register: nodepool_dir
# OVH nodepool nodes have an issue which causes nested virt
# instances to crash with a hardware error, then a dump.
# We therefore detect whether we're running on OVH and
# force it to use qemu instead.
- name: Discover the OpenStack-Infra mirrors
shell: |
source /etc/ci/mirror_info.sh
NODEPOOL_OVERRIDES="/etc/openstack_deploy/user_openstackci.yml"
echo "uca_apt_repo_url: '${NODEPOOL_UCA_MIRROR}'" >> ${NODEPOOL_OVERRIDES}
echo "openstack_hosts_centos_mirror_url: '${NODEPOOL_CENTOS_MIRROR}'" >> ${NODEPOOL_OVERRIDES}
if [[ ${NODEPOOL_PYPI_MIRROR} == *.ovh.* ]]; then
echo "nova_virt_type: 'qemu'" >> ${NODEPOOL_OVERRIDES}
fi
args:
executable: /bin/bash
when: