29fb179262
This patch removes all the tasks being executed inside the playbook used for running overcloud updates. Most of these removed tasks are being handled somewhere else (import triploe-upgrade [0], mainly) so we can simplify the playbook by calling the tripleo-upgrade role with the required parameters defined in each fs. This patch also gets rid of container_registry_file, which is being moved into the job's fs in [1]. [0] Icc84645a16aa53ca2cb974dbeb52e6474cd98aab [1] I27f13b164bb78619f8830b875ec9f04445ce1e26 Change-Id: Iec42b574d697f3acfd668636e3dd11217a3ea25e Related-Bug: #1749740
11 lines
353 B
YAML
11 lines
353 B
YAML
- name: Run tripleo-upgrade role to update the overcloud
|
|
hosts: undercloud
|
|
gather_facts: yes
|
|
tags:
|
|
- overcloud-update
|
|
roles:
|
|
- role: tripleo-upgrade
|
|
# TODO: Remove this once the fs containing the parameter is merged
|
|
container_registry_file: containers-default-parameters.yaml
|
|
when: overcloud_update|default(false)|bool
|