
This patch remove useless tripleo-validations calls in the tripleo-quickstart-extras playbook. Only validations and standalone is used for now in CI. The other implementations was legacy implementation that is not used anymore in CI Change-Id: I2ef1f06007c646ef4307c0cc0b6f60af414f9234
58 lines
1.2 KiB
YAML
58 lines
1.2 KiB
YAML
---
|
|
- name: Prepare the undercloud networks for the overcloud deployment
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
roles:
|
|
- overcloud-prep-network
|
|
tags:
|
|
- overcloud-prep-network
|
|
|
|
- name: copy over config files
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
roles:
|
|
- overcloud-prep-config
|
|
tags:
|
|
- overcloud-prep-config
|
|
|
|
- name: Perpare the baremetal overcloud
|
|
hosts: undercloud
|
|
gather_facts: true
|
|
roles:
|
|
- baremetal-prep-overcloud
|
|
tags:
|
|
- baremetal-prep-overcloud
|
|
|
|
- name: Prepare overcloud containers
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
roles:
|
|
- {role: overcloud-prep-containers, when: containerized_overcloud|bool}
|
|
tags:
|
|
- overcloud-prep-containers
|
|
|
|
- name: Prepare the overcloud images for deployment
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
roles:
|
|
- overcloud-prep-images
|
|
tags:
|
|
- overcloud-prep-images
|
|
|
|
- name: Prepare overcloud flavors
|
|
hosts: undercloud
|
|
gather_facts: false
|
|
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: false
|
|
roles:
|
|
- {role: overcloud-ssl}
|
|
tags:
|
|
- overcloud-ssl
|