diff options
author | Giulio Fidente <gfidente@redhat.com> | 2017-05-24 18:45:59 +0200 |
---|---|---|
committer | Giulio Fidente <gfidente@redhat.com> | 2017-06-26 16:32:02 +0200 |
commit | 9c1940e461867f2ce986a81fa313d7995592f0c5 (patch) | |
tree | 7c0e47d78aca6b327ab9d53539582023627651de /docker | |
parent | 71f13388161cbab12fe284f7b251ca8d36f7635c (diff) |
Provides a list of per-service ctlplane IPs to the workflows env
Adds in the execution environment of the workflow steps a list of
per-service network IPs. This can be used by the workflows to
execute actions against the nodes hosting a given service.
Change-Id: Id7c735d53f04f6ad848b2f9f1adaa3c84ecd2fcd
Implements: blueprint tripleo-ceph-ansible
Diffstat (limited to 'docker')
-rw-r--r-- | docker/docker-steps.j2 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docker/docker-steps.j2 b/docker/docker-steps.j2 index b3359b17..83772028 100644 --- a/docker/docker-steps.j2 +++ b/docker/docker-steps.j2 @@ -38,6 +38,8 @@ parameters: description: Mapping of service endpoint -> protocol. Typically set via parameter_defaults in the resource registry. type: json + ctlplane_service_ips: + type: json conditions: {% for step in range(1, deploy_steps_max) %} @@ -119,8 +121,14 @@ resources: actions: CREATE: workflow: { get_resource: WorkflowTasks_Step{{step}} } + params: + env: + service_ips: { get_param: ctlplane_service_ips } UPDATE: workflow: { get_resource: WorkflowTasks_Step{{step}} } + params: + env: + service_ips: { get_param: ctlplane_service_ips } always_update: true # END service_workflow_tasks handling {% endfor %} |