aboutsummaryrefslogtreecommitdiffstats
path: root/overcloud.j2.yaml
diff options
context:
space:
mode:
authorSteven Hardy <shardy@redhat.com>2016-11-15 22:49:18 +0000
committerFlavio Percoco <flaper87@gmail.com>2016-11-16 09:06:55 +0100
commit8fe71c088889426f5a1547e96b47c569a0a0643c (patch)
tree528ea50b199b7e68fc2446266229ef7545031c5f /overcloud.j2.yaml
parent133edad1302d09c2ad27d548fac6c3a72eec9c2e (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
Diffstat (limited to 'overcloud.j2.yaml')
-rw-r--r--overcloud.j2.yaml2
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: