Disable nested virt for standalone

Nested virt is causing the VMs to crash in CI occassicially when tempest
is running. While it's not ideal to use qemu, it's better not to have
crashing VMs.

Change-Id: Ia9944f6346709dbea9f480677d60efc7a5d4e162
Closes-Bug: #1806720
This commit is contained in:
Alex Schultz 2018-12-06 12:24:41 -07:00
parent e25a4ca4d5
commit a466cc6a20
2 changed files with 6 additions and 9 deletions

View File

@ -49,10 +49,12 @@
tags:
- standalone-upgrade
# NOTE(aschultz): nested virt causes problems in CI so we default to qemu
# and do not do the dynamic virt lookup.
- name: Standalone Upgrade
hosts: undercloud
vars:
standalone_libvirt_type: "{{ virt_type|default('qemu') }}"
standalone_libvirt_type: "{{ standalone_virt_type|default('qemu') }}"
roles:
- standalone-upgrade
tags:

View File

@ -26,17 +26,12 @@
tags:
- build
- name: Set Virtualization Type
hosts: undercloud
roles:
- set-libvirt-type
tags:
- standalone
# NOTE(aschultz): nested virt causes problems in CI so we default to qemu
# and do not do the dynamic virt lookup.
- name: Deploy Standalone
hosts: undercloud
vars:
standalone_libvirt_type: "{{ virt_type|default('qemu') }}"
standalone_libvirt_type: "{{ standalone_virt_type|default('qemu') }}"
roles:
- standalone
tags: