Files
tripleo-quickstart-extras/playbooks/quickstart-extras-overcloud-prep.yml
wes hayutin 37109c55aa Revert "Upgrade linters (ansible-lint v5)"
This reverts commit ac93fbbb47.

Reason for revert: breaks default install path for quickstart

Change-Id: I7d513d1bffdfd4293f199c38216ceb00343e06c5
2021-03-12 17:50:42 +00:00

84 lines
2.2 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
- name: Run tripleo-validations pre-introspection tests
hosts: undercloud
gather_facts: false
tags:
- tripleo-validations
vars:
validations_group: ['pre-introspection']
tasks:
- include_role:
name: tripleo_validations
when:
- (run_tripleo_validations|bool or run_tripleo_validations_negative_tests|bool)
- release not in ['queens', 'rocky', 'stein']
# 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: Run tripleo-validations pre-deployment tests
hosts: undercloud
gather_facts: false
tags:
- tripleo-validations
vars:
validations_group: ['pre-deployment']
tasks:
- include_role:
name: tripleo_validations
when:
- (run_tripleo_validations|bool or run_tripleo_validations_negative_tests|bool)
- release not in ['queens', 'rocky', 'stein']
- name: Prepare the SSL Configuration for the overcloud deployment
hosts: undercloud
gather_facts: false
tags:
- overcloud-scripts
- overcloud-ssl
roles:
- {role: overcloud-ssl}