6d4d27c743
This change introduces the steps used for upgrading a Newton env to Queens by following the fast forward upgrade steps. Co-Authored-By: Marius Cornea <mcornea@redhat.com> Change-Id: I7a1478edc4a55a64960c136490019f202439b8dc
21 lines
563 B
YAML
21 lines
563 B
YAML
---
|
|
# tasks file for tripleo-upgrade
|
|
|
|
- block:
|
|
- name: prepare workload scripts
|
|
include: common/create_workload.yml
|
|
|
|
- name: launch workload
|
|
command: "{{ workload_launch_script }}"
|
|
|
|
when: workload_launch
|
|
|
|
- include: upgrade/main.yml
|
|
when: upgrade_noop|bool or undercloud_upgrade|bool or overcloud_upgrade|bool
|
|
|
|
- include: update/main.yml
|
|
when: update_noop|bool or undercloud_update|bool or overcloud_update|bool
|
|
|
|
- include: fast-forward-upgrade/main.yml
|
|
when: ffu_noop|bool or ffu_undercloud_upgrade|bool or ffu_overcloud_upgrade|bool
|