f79d80c9f6
- Split baremetal-undercloud playbook - Integrate the pieces into baremetal-full-deploy - Add feature set file to a separate tq review - Use ovb-common settings for downstream tests - Add missing tags for consistent usage Depends-On: I860f257d7b8fcaf7b935575eab22d211f4da39b5 Change-Id: I7743927f71b5f8a7f616ccd11910e9a91bb726fb
80 lines
1.8 KiB
YAML
80 lines
1.8 KiB
YAML
---
|
|
- name: Prepare the undercloud networks for the overcloud deployment
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- overcloud-prep-network
|
|
tags:
|
|
- overcloud-prep-network
|
|
|
|
- name: copy over config files
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- overcloud-prep-config
|
|
tags:
|
|
- overcloud-prep-config
|
|
|
|
- name: Perpare the baremetal overcloud
|
|
hosts: undercloud
|
|
gather_facts: yes
|
|
roles:
|
|
- baremetal-prep-overcloud
|
|
tags:
|
|
- baremetal-prep-overcloud
|
|
|
|
- name: Prepare overcloud containers
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- { role: overcloud-prep-containers, when: containerized_overcloud|bool }
|
|
tags:
|
|
- overcloud-prep-containers
|
|
|
|
- name: Run tripleo-validations pre-introspection tests
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
tags:
|
|
- tripleo-validations
|
|
vars:
|
|
validations_group: ['pre-introspection']
|
|
roles:
|
|
- { role: tripleo-validations,
|
|
when: run_tripleo_validations|bool or run_tripleo_validations_negative_tests|bool}
|
|
|
|
- name: Prepare the overcloud images for deployment
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- overcloud-prep-images
|
|
tags:
|
|
- overcloud-prep-images
|
|
|
|
- name: Prepare overcloud flavors
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- { role: overcloud-prep-flavors,
|
|
when: step_overcloud_prep_flavors|default(true)|bool }
|
|
tags:
|
|
- overcloud-prep-flavors
|
|
|
|
- name: Prepare the SSL Configuration for the overcloud deployment
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
roles:
|
|
- { role: overcloud-ssl }
|
|
tags:
|
|
- overcloud-ssl
|
|
|
|
- name: Run tripleo-validations pre-deployment tests
|
|
hosts: undercloud
|
|
gather_facts: no
|
|
tags:
|
|
- tripleo-validations
|
|
vars:
|
|
validations_group: ['pre-deployment']
|
|
roles:
|
|
- { role: tripleo-validations,
|
|
when: run_tripleo_validations|bool or run_tripleo_validations_negative_tests|bool}
|