4a4bd9c06a
This change removes logic for releases older than train, because these releases are already EOLed. This covers only overcloud-* roles and playbooks and the other items will be covered by separate changes. Note that this change also removes the containerized_* variables because current active releases(>=Train) no longer supports non-containerized deployment. The containerized_overcloud_upgrade variable is still left because the variable is still required by the tripleo-ci-base-multinode-standard job template. Change-Id: If29ec2c2219a28a1f79db0e552e2c622c0a7bda6
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
|
|
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
|