diff options
author | Steven Hardy <shardy@redhat.com> | 2016-11-15 22:49:18 +0000 |
---|---|---|
committer | Flavio Percoco <flaper87@gmail.com> | 2016-11-16 09:06:55 +0100 |
commit | 8fe71c088889426f5a1547e96b47c569a0a0643c (patch) | |
tree | 528ea50b199b7e68fc2446266229ef7545031c5f | |
parent | 133edad1302d09c2ad27d548fac6c3a72eec9c2e (diff) |
Correct AllNodesDeploySteps depends_on
This is wrong atm, it should loop to create a list for the depends_on
not multiple depends_on statements.
Note this was first corrected in https://review.openstack.org/#/c/330659/
but we need it as a standalone patch that can be backported.
Change-Id: I4d1d6346f2147e573fc0900038f1ad1d782e75ee
Closes-Bug: #1642069
-rw-r--r-- | overcloud.j2.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/overcloud.j2.yaml b/overcloud.j2.yaml index 64bed276..42339ead 100644 --- a/overcloud.j2.yaml +++ b/overcloud.j2.yaml @@ -542,8 +542,8 @@ resources: # Post deployment steps for all roles AllNodesDeploySteps: type: OS::TripleO::PostDeploySteps -{% for role in roles %} depends_on: +{% for role in roles %} - {{role.name}}AllNodesDeployment {% endfor %} properties: |