This allows per-step ansible tasks to be run on the nodes when using
the config download mechanism, e.g adding the following to a service
template will create /tmp/testperstep populated for every step.
deploy_steps_tasks:
- name: Test something happens each step
lineinfile:
path: /tmp/testperstep
create: true
line: "{{step}} step happened"
Change-Id: Ic34f5c48736b6340a1cfcea614b05e33e2fce040
6 lines
126 B
YAML
6 lines
126 B
YAML
---
|
|
features:
|
|
- |
|
|
Support added for per-service deploy_steps_tasks which are run every
|
|
step on the overcloud nodes.
|