tripleo-quickstart-extras/playbooks/quickstart-extras-overcloud-prep.yml
matbu 7a5ed70cf8 Remove legacy tripleo-validations roles calls
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
2021-04-12 12:24:41 +02:00

56 lines
1.4 KiB
YAML

---
# Prepare any additional configuration files required by the overcloud
- name: Prepare configuration files for the overcloud deployment
hosts: undercloud
gather_facts: false
tags:
- overcloud-prep-config
roles:
- overcloud-prep-config
# Prepare the overcloud for a containerized deployment
- name: Prepare overcloud containers
hosts: undercloud
gather_facts: false
tags:
- overcloud-prep-containers
roles:
- overcloud-prep-containers
# Prepare the overcloud images for deployment
- name: Prepare the overcloud images for deployment
hosts: undercloud
gather_facts: false
tags:
- overcloud-prep-images
roles:
- overcloud-prep-images
# Prepare the overcloud flavor configuration
- name: Prepare overcloud flavors
hosts: undercloud
gather_facts: false
tags:
- overcloud-prep-flavors
roles:
- {role: overcloud-prep-flavors,
when: step_overcloud_prep_flavors|bool and undercloud_enable_nova|bool}
# Prepare the undercloud networks for the overcloud deployment
- name: Prepare the undercloud networks for the overcloud deployment
hosts: undercloud
gather_facts: false
tags:
- overcloud-prep-network
roles:
- overcloud-prep-network
- name: Prepare the SSL Configuration for the overcloud deployment
hosts: undercloud
gather_facts: false
tags:
- overcloud-scripts
- overcloud-ssl
roles:
- {role: overcloud-ssl}