7859700354
Named debug ansible tasks have been added to the plays that get generated in deploy_steps_playbook.yaml (from common/deploy-steps.j2). The explicitly named tasks allow for using ansible-playbook's --start-at-task option to resume a deployment from the start of a given play. For example, this could be used to resume a deployment with: ansible-playbook ... --start-at-task "Overcloud common deploy step tasks 3" ... Previously this was not possible since many of the tasks that got generated in common_deploy_steps_tasks.yaml used an ansible variable in the name, which is not resolved until runtime, so --start-at-task is ignored. Change-Id: If40a5ecaacf8c74c98775eb6bde05d967694f640
7 lines
305 B
YAML
7 lines
305 B
YAML
---
|
|
features:
|
|
- Named debug ansible tasks have been added to the plays that get generated
|
|
in deploy_steps_playbook.yaml (from common/deploy-steps.j2). The explicitly
|
|
named tasks allow for using ansible-playbook's --start-at-task option to
|
|
resume a deployment from the start of a given play.
|