|
|
|
@ -19,7 +19,7 @@ resources:
|
|
|
|
|
|
|
|
|
|
# Upgrade Steps for all roles |
|
|
|
|
# FIXME(shardy): would be nice to make the number of steps configurable |
|
|
|
|
{% for step in range(1, 8) %} |
|
|
|
|
{% for step in range(0, 8) %} |
|
|
|
|
{% for role in roles %} |
|
|
|
|
# Step {{step}} resources |
|
|
|
|
{{role.name}}UpgradeConfig_Step{{step}}: |
|
|
|
@ -28,7 +28,7 @@ resources:
|
|
|
|
|
# serialization, but the event output is easier to follow if we |
|
|
|
|
# do, and there should be minimal performance hit (creating the |
|
|
|
|
# config is cheap compared to the time to apply the deployment). |
|
|
|
|
{% if step > 1 %} |
|
|
|
|
{% if step > 0 %} |
|
|
|
|
depends_on: |
|
|
|
|
{% for dep in roles %} |
|
|
|
|
- {{dep.name}}Upgrade_Step{{step -1}} |
|
|
|
@ -40,7 +40,7 @@ resources:
|
|
|
|
|
|
|
|
|
|
{{role.name}}Upgrade_Step{{step}}: |
|
|
|
|
type: OS::Heat::StructuredDeploymentGroup |
|
|
|
|
{% if step > 1 %} |
|
|
|
|
{% if step > 0 %} |
|
|
|
|
depends_on: |
|
|
|
|
{% for dep in roles %} |
|
|
|
|
- {{dep.name}}Upgrade_Step{{step -1}} |
|
|
|
|