|
|
|
@ -816,6 +816,7 @@ outputs:
|
|
|
|
|
params: |
|
|
|
|
DEPLOY_SOURCE_HOST: {get_param: deployment_source_hosts} |
|
|
|
|
DEPLOY_TARGET_HOST: {get_param: deployment_target_hosts} |
|
|
|
|
CONTAINER_CLI: {get_param: ContainerCli} |
|
|
|
|
template: | |
|
|
|
|
- hosts: DEPLOY_SOURCE_HOST |
|
|
|
|
name: Gather facts from undercloud |
|
|
|
@ -843,6 +844,8 @@ outputs:
|
|
|
|
|
gather_facts: no |
|
|
|
|
any_errors_fatal: yes |
|
|
|
|
become: false |
|
|
|
|
vars: |
|
|
|
|
container_cli: CONTAINER_CLI |
|
|
|
|
tasks: |
|
|
|
|
- include: external_upgrade_steps_tasks.yaml |
|
|
|
|
with_sequence: start=0 end={{external_upgrade_steps_max-1}} |
|
|
|
@ -859,6 +862,8 @@ outputs:
|
|
|
|
|
gather_facts: no |
|
|
|
|
any_errors_fatal: yes |
|
|
|
|
become: false |
|
|
|
|
vars: |
|
|
|
|
container_cli: CONTAINER_CLI |
|
|
|
|
tasks: |
|
|
|
|
- include: external_deploy_steps_tasks.yaml |
|
|
|
|
with_sequence: start=1 end={{deploy_steps_max-1}} |
|
|
|
|