d89affe007
This change adds an option called standalone_libvirt_type to the standalone role which will generate the libvirt type standalone parameters for the deployment. Change-Id: I3f71b4d38049692c7b2f9ff4cd785d177ba5fc27
52 lines
1.0 KiB
YAML
52 lines
1.0 KiB
YAML
---
|
|
- name: Add the overcloud nodes to the generated inventory
|
|
hosts: undercloud
|
|
gather_facts: yes
|
|
tags:
|
|
- standalone
|
|
vars:
|
|
inventory: multinode
|
|
roles:
|
|
- tripleo-inventory
|
|
|
|
- name: Prepare the undercloud for installation
|
|
hosts: undercloud
|
|
roles:
|
|
- undercloud-setup
|
|
tags:
|
|
- standalone
|
|
|
|
- name: Run DLRN gate role and install repo
|
|
hosts: undercloud
|
|
vars:
|
|
artg_compressed_gating_repo: "${HOME}/gating_repo.tar.gz"
|
|
roles:
|
|
- build-test-packages
|
|
- { role: install-built-repo, when: compressed_gating_repo is defined }
|
|
tags:
|
|
- build
|
|
|
|
- name: Set Virtualization Type
|
|
hosts: undercloud
|
|
roles:
|
|
- set-libvirt-type
|
|
tags:
|
|
- standalone
|
|
|
|
- name: Deploy Standalone
|
|
hosts: undercloud
|
|
vars:
|
|
standalone_libvirt_type: "{{ virt_type|default('qemu') }}"
|
|
roles:
|
|
- standalone
|
|
tags:
|
|
- standalone
|
|
|
|
- name: Validate the undercloud
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- { role: validate-tempest, when: run_tempest|bool }
|
|
tags:
|
|
- standalone
|