Ensure AllNodesExtraConfig runs before AllNodesDeploySteps
authorSteven Hardy <shardy@redhat.com>
Tue, 2 May 2017 10:54:12 +0000 (11:54 +0100)
committerEmilien Macchi <emilien@redhat.com>
Tue, 2 May 2017 15:05:13 +0000 (15:05 +0000)
When implementing custom roles, we lost an implicit dependency that
ensured AllNodesExtraConfig is applied before AllNodesDeploySteps,
which causes problems if you need to write hieradata via the
AllNodesExtraConfig hook (some cisco integrations we have in tree
do this, and are now broken because the ordering is no longer ensured.

Change-Id: Ie78ecbb4e135ab7f196867ef9d8d271049a9cd10
Closes-Bug: #1687597

overcloud.j2.yaml

index 54092fa..7cf6ad5 100644 (file)
@@ -667,6 +667,7 @@ resources:
   AllNodesDeploySteps:
     type: OS::TripleO::PostDeploySteps
     depends_on:
+      - AllNodesExtraConfig
 {% for role in roles %}
       - {{role.name}}AllNodesDeployment
 {% endfor %}