Don't recalculate EndpointMap to get outputs
[apex-tripleo-heat-templates.git] / overcloud.j2.yaml
1 {% set primary_role_name = roles[0].name -%}
2 heat_template_version: ocata
3
4 description: >
5   Deploy an OpenStack environment, consisting of several node types (roles),
6   Controller, Compute, BlockStorage, SwiftStorage and CephStorage. The Storage
7   roles enable independent scaling of the storage components, but the minimal
8   deployment is one Controller and one Compute node.
9
10
11 # TODO(shadower): we should probably use the parameter groups to put
12 # some order in here.
13 parameters:
14
15   # Common parameters (not specific to a role)
16   CloudName:
17     default: overcloud.localdomain
18     description: The DNS name of this cloud. E.g. ci-overcloud.tripleo.org
19     type: string
20   CloudNameInternal:
21     default: overcloud.internalapi.localdomain
22     description: >
23       The DNS name of this cloud's internal API endpoint. E.g.
24       'ci-overcloud.internalapi.tripleo.org'.
25     type: string
26   CloudNameStorage:
27     default: overcloud.storage.localdomain
28     description: >
29       The DNS name of this cloud's storage endpoint. E.g.
30       'ci-overcloud.storage.tripleo.org'.
31     type: string
32   CloudNameStorageManagement:
33     default: overcloud.storagemgmt.localdomain
34     description: >
35       The DNS name of this cloud's storage management endpoint. E.g.
36       'ci-overcloud.storagemgmt.tripleo.org'.
37     type: string
38   CloudNameCtlplane:
39     default: overcloud.ctlplane.localdomain
40     description: >
41       The DNS name of this cloud's storage management endpoint. E.g.
42       'ci-overcloud.management.tripleo.org'.
43     type: string
44   ControlFixedIPs:
45     default: []
46     description: Should be used for arbitrary ips.
47     type: json
48   InternalApiVirtualFixedIPs:
49     default: []
50     description: >
51         Control the IP allocation for the InternalApiVirtualInterface port. E.g.
52         [{'ip_address':'1.2.3.4'}]
53     type: json
54   NeutronControlPlaneID:
55     default: 'ctlplane'
56     type: string
57     description: Neutron ID or name for ctlplane network.
58   NeutronPublicInterface:
59     default: nic1
60     description: What interface to bridge onto br-ex for network nodes.
61     type: string
62   PublicVirtualFixedIPs:
63     default: []
64     description: >
65         Control the IP allocation for the PublicVirtualInterface port. E.g.
66         [{'ip_address':'1.2.3.4'}]
67     type: json
68   RabbitCookieSalt:
69     type: string
70     default: unset
71     description: Salt for the rabbit cookie, change this to force the randomly generated rabbit cookie to change.
72   StorageVirtualFixedIPs:
73     default: []
74     description: >
75         Control the IP allocation for the StorageVirtualInterface port. E.g.
76         [{'ip_address':'1.2.3.4'}]
77     type: json
78   StorageMgmtVirtualFixedIPs:
79     default: []
80     description: >
81         Control the IP allocation for the StorageMgmgVirtualInterface port. E.g.
82         [{'ip_address':'1.2.3.4'}]
83     type: json
84   RedisVirtualFixedIPs:
85     default: []
86     description: >
87         Control the IP allocation for the virtual IP used by Redis. E.g.
88         [{'ip_address':'1.2.3.4'}]
89     type: json
90   CloudDomain:
91     default: 'localdomain'
92     type: string
93     description: >
94       The DNS domain used for the hosts. This should match the dhcp_domain
95       configured in the Undercloud neutron. Defaults to localdomain.
96   ServerMetadata:
97     default: {}
98     description: >
99       Extra properties or metadata passed to Nova for the created nodes in
100       the overcloud. It's accessible via the Nova metadata API.
101     type: json
102
103 # Compute-specific params
104 # FIXME(shardy) handle these deprecated names as they don't match compute.yaml
105   HypervisorNeutronPhysicalBridge:
106     default: 'br-ex'
107     description: >
108       An OVS bridge to create on each hypervisor. This defaults to br-ex the
109       same as the control plane nodes, as we have a uniform configuration of
110       the openvswitch agent. Typically should not need to be changed.
111     type: string
112   HypervisorNeutronPublicInterface:
113     default: nic1
114     description: What interface to add to the HypervisorNeutronPhysicalBridge.
115     type: string
116
117   # Jinja loop for Role in role_data.yaml
118 {% for role in roles %}
119   # Parameters generated for {{role.name}} Role
120   {{role.name}}Services:
121     description: A list of service resources (configured in the Heat
122                  resource_registry) which represent nested stacks
123                  for each service that should get installed on the {{role.name}} role.
124     type: comma_delimited_list
125
126   {{role.name}}Count:
127     description: Number of {{role.name}} nodes to deploy
128     type: number
129     default: {{role.CountDefault|default(0)}}
130
131   {{role.name}}HostnameFormat:
132     type: string
133     description: >
134       Format for {{role.name}} node hostnames
135       Note %index% is translated into the index of the node, e.g 0/1/2 etc
136       and %stackname% is replaced with the stack name e.g overcloud
137   {% if role.HostnameFormatDefault %}
138     default: "{{role.HostnameFormatDefault}}"
139   {% else %}
140     default: "%stackname%-{{role.name.lower()}}-%index%"
141   {% endif %}
142
143   {{role.name}}RemovalPolicies:
144     default: []
145     type: json
146     description: >
147       List of resources to be removed from {{role.name}} ResourceGroup when
148       doing an update which requires removal of specific resources.
149       Example format ComputeRemovalPolicies: [{'resource_list': ['0']}]
150
151 {% if role.name != 'Compute' %}
152   {{role.name}}SchedulerHints:
153 {% else %}
154   NovaComputeSchedulerHints:
155 {% endif %}
156     type: json
157     description: Optional scheduler hints to pass to nova
158     default: {}
159 {% endfor %}
160
161   # Identifiers to trigger tasks on nodes
162   UpdateIdentifier:
163     default: ''
164     type: string
165     description: >
166       Setting to a previously unused value during stack-update will trigger
167       package update on all nodes
168   DeployIdentifier:
169     default: ''
170     type: string
171     description: >
172       Setting this to a unique value will re-run any deployment tasks which
173       perform configuration on a Heat stack-update.
174   AddVipsToEtcHosts:
175     default: True
176     type: boolean
177     description: >
178       Set to true to append per network Vips to /etc/hosts on each node.
179
180 conditions:
181   add_vips_to_etc_hosts: {equals : [{get_param: AddVipsToEtcHosts}, True]}
182
183 resources:
184
185   VipHosts:
186     type: OS::Heat::Value
187     properties:
188       type: string
189       value:
190         list_join:
191         - "\n"
192         - - str_replace:
193               template: IP  HOST
194               params:
195                 IP: {get_attr: [VipMap, net_ip_map, external]}
196                 HOST: {get_param: CloudName}
197           - str_replace:
198               template: IP  HOST
199               params:
200                 IP: {get_attr: [VipMap, net_ip_map, ctlplane]}
201                 HOST: {get_param: CloudNameCtlplane}
202           - str_replace:
203               template: IP  HOST
204               params:
205                 IP: {get_attr: [VipMap, net_ip_map, internal_api]}
206                 HOST: {get_param: CloudNameInternal}
207           - str_replace:
208               template: IP  HOST
209               params:
210                 IP: {get_attr: [VipMap, net_ip_map, storage]}
211                 HOST: {get_param: CloudNameStorage}
212           - str_replace:
213               template: IP  HOST
214               params:
215                 IP: {get_attr: [VipMap, net_ip_map, storage_mgmt]}
216                 HOST: {get_param: CloudNameStorageManagement}
217
218   HeatAuthEncryptionKey:
219     type: OS::Heat::RandomString
220
221   PcsdPassword:
222     type: OS::Heat::RandomString
223     properties:
224       length: 16
225
226   HorizonSecret:
227     type: OS::Heat::RandomString
228     properties:
229       length: 10
230
231   ServiceNetMap:
232     type: OS::TripleO::ServiceNetMap
233
234   EndpointMap:
235     type: OS::TripleO::EndpointMap
236     properties:
237       CloudEndpoints:
238         external: {get_param: CloudName}
239         internal_api: {get_param: CloudNameInternal}
240         storage: {get_param: CloudNameStorage}
241         storage_mgmt: {get_param: CloudNameStorageManagement}
242         ctlplane: {get_param: CloudNameCtlplane}
243       NetIpMap: {get_attr: [VipMap, net_ip_map]}
244       ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map]}
245
246   EndpointMapData:
247     type: OS::Heat::Value
248     properties:
249       type: json
250       value: {get_attr: [EndpointMap, endpoint_map]}
251
252   # Jinja loop for Role in roles_data.yaml
253 {% for role in roles %}
254   # Resources generated for {{role.name}} Role
255   {{role.name}}ServiceChain:
256     type: OS::TripleO::Services
257     properties:
258       Services:
259         get_param: {{role.name}}Services
260       ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map]}
261       EndpointMap: {get_attr: [EndpointMap, endpoint_map]}
262       DefaultPasswords: {get_attr: [DefaultPasswords, passwords]}
263
264   {{role.name}}HostsDeployment:
265     type: OS::Heat::StructuredDeployments
266     properties:
267       name: {{role.name}}HostsDeployment
268       config: {get_attr: [hostsConfig, config_id]}
269       servers: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
270
271   {{role.name}}AllNodesDeployment:
272     type: OS::Heat::StructuredDeployments
273     depends_on:
274 {% for role_inner in roles %}
275       - {{role_inner.name}}HostsDeployment
276 {% endfor %}
277     properties:
278       name: {{role.name}}AllNodesDeployment
279       config: {get_attr: [allNodesConfig, config_id]}
280       servers: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
281       input_values:
282         # Note we have to use yaql to look up the first hostname/ip in the
283         # list because heat path based attributes operate on the attribute
284         # inside the ResourceGroup, not the exposed list ref discussion in
285         # https://bugs.launchpad.net/heat/+bug/1640488
286         # The coalesce is needed because $.data is None during heat validation
287         bootstrap_nodeid:
288           yaql:
289             expression: coalesce($.data, []).first(null)
290             data: {get_attr: [{{role.name}}, hostname]}
291         bootstrap_nodeid_ip:
292           yaql:
293             expression: coalesce($.data, []).first(null)
294             data: {get_attr: [{{role.name}}, ip_address]}
295
296   {{role.name}}AllNodesValidationDeployment:
297     type: OS::Heat::StructuredDeployments
298     depends_on: {{role.name}}AllNodesDeployment
299     properties:
300       name: {{role.name}}AllNodesValidationDeployment
301       config: {get_resource: AllNodesValidationConfig}
302       servers: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
303
304   {{role.name}}IpListMap:
305     type: OS::TripleO::Network::Ports::NetIpListMap
306     properties:
307       ControlPlaneIpList: {get_attr: [{{role.name}}, ip_address]}
308       ExternalIpList: {get_attr: [{{role.name}}, external_ip_address]}
309       InternalApiIpList: {get_attr: [{{role.name}}, internal_api_ip_address]}
310       StorageIpList: {get_attr: [{{role.name}}, storage_ip_address]}
311       StorageMgmtIpList: {get_attr: [{{role.name}}, storage_mgmt_ip_address]}
312       TenantIpList: {get_attr: [{{role.name}}, tenant_ip_address]}
313       ManagementIpList: {get_attr: [{{role.name}}, management_ip_address]}
314       EnabledServices: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
315       ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map_lower]}
316       ServiceHostnameList: {get_attr: [{{role.name}}, hostname]}
317       NetworkHostnameMap:
318         # Note (shardy) this somewhat complex yaql may be replaced
319         # with a map_deep_merge function in ocata.  It merges the
320         # list of maps, but appends to colliding lists so we can
321         # create a map of lists for all nodes for each network
322         yaql:
323           expression: dict($.data.where($ != null).flatten().selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
324           data:
325             - {get_attr: [{{role.name}}, hostname_map]}
326
327   {{role.name}}:
328     type: OS::Heat::ResourceGroup
329     depends_on: Networks
330     properties:
331       count: {get_param: {{role.name}}Count}
332       removal_policies: {get_param: {{role.name}}RemovalPolicies}
333       resource_def:
334         type: OS::TripleO::{{role.name}}
335         properties:
336           CloudDomain: {get_param: CloudDomain}
337           ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map]}
338           EndpointMap: {get_attr: [EndpointMap, endpoint_map]}
339           Hostname:
340             str_replace:
341               template: {get_param: {{role.name}}HostnameFormat}
342               params:
343                 '%stackname%': {get_param: 'OS::stack_name'}
344           NodeIndex: '%index%'
345   {% if role.name != 'Compute' %}
346           {{role.name}}SchedulerHints: {get_param: {{role.name}}SchedulerHints}
347   {% else %}
348           NovaComputeSchedulerHints: {get_param: NovaComputeSchedulerHints}
349   {% endif %}
350           ServiceConfigSettings:
351             map_merge:
352               -  get_attr: [{{role.name}}ServiceChain, role_data, config_settings]
353           {% for r in roles %}
354               - get_attr: [{{r.name}}ServiceChain, role_data, global_config_settings]
355           {% endfor %}
356               # This next step combines two yaql passes:
357               # - The inner one does a deep merge on the service_config_settings for all roles
358               # - The outer one filters the map based on the services enabled for the role
359               #   then merges the result into one map.
360               - yaql:
361                   expression: let(root => $) -> $.data.map.items().where($[0] in coalesce($root.data.services, [])).select($[1]).reduce($1.mergeWith($2), {})
362                   data:
363                     map:
364                       yaql:
365                         expression: $.data.where($ != null).reduce($1.mergeWith($2), {})
366                         data:
367                         {% for r in roles %}
368                           - get_attr: [{{r.name}}ServiceChain, role_data, service_config_settings]
369                         {% endfor %}
370                     services: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
371           ServiceNames: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
372           MonitoringSubscriptions: {get_attr: [{{role.name}}ServiceChain, role_data, monitoring_subscriptions]}
373           ServiceMetadataSettings: {get_attr: [{{role.name}}ServiceChain, role_data, service_metadata_settings]}
374 {% endfor %}
375
376   hostsConfig:
377     type: OS::TripleO::Hosts::SoftwareConfig
378     properties:
379       hosts:
380         list_join:
381         - "\n"
382         - - if:
383             - add_vips_to_etc_hosts
384             - {get_attr: [VipHosts, value]}
385             - ''
386         -
387 {% for role in roles %}
388           - list_join:
389             - "\n"
390             - {get_attr: [{{role.name}}, hosts_entry]}
391 {% endfor %}
392
393   allNodesConfig:
394     type: OS::TripleO::AllNodes::SoftwareConfig
395     properties:
396       cloud_name_external: {get_param: CloudName}
397       cloud_name_internal_api: {get_param: CloudNameInternal}
398       cloud_name_storage: {get_param: CloudNameStorage}
399       cloud_name_storage_mgmt: {get_param: CloudNameStorageManagement}
400       cloud_name_ctlplane: {get_param: CloudNameCtlplane}
401       enabled_services:
402         list_join:
403           - ','
404 {% for role in roles %}
405           - {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
406 {% endfor %}
407       logging_groups:
408         yaql:
409           expression: >
410             $.data.groups.flatten()
411           data:
412             groups:
413 {% for role in roles %}
414               - {get_attr: [{{role.name}}ServiceChain, role_data, logging_groups]}
415 {% endfor %}
416       logging_sources:
417         yaql:
418           expression: >
419             $.data.sources.flatten()
420           data:
421             sources:
422 {% for role in roles %}
423               - {get_attr: [{{role.name}}ServiceChain, role_data, logging_sources]}
424 {% endfor %}
425       controller_ips: {get_attr: [{{primary_role_name}}, ip_address]}
426       controller_names: {get_attr: [{{primary_role_name}}, hostname]}
427       service_ips:
428         # Note (shardy) this somewhat complex yaql may be replaced
429         # with a map_deep_merge function in ocata.  It merges the
430         # list of maps, but appends to colliding lists when a service
431         # is deployed on more than one role
432         yaql:
433           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
434           data:
435             l:
436 {% for role in roles %}
437               - {get_attr: [{{role.name}}IpListMap, service_ips]}
438 {% endfor %}
439       service_node_names:
440         yaql:
441           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
442           data:
443             l:
444 {% for role in roles %}
445               - {get_attr: [{{role.name}}IpListMap, service_hostnames]}
446 {% endfor %}
447       short_service_node_names:
448         yaql:
449           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
450           data:
451             l:
452 {% for role in roles %}
453               - {get_attr: [{{role.name}}IpListMap, short_service_hostnames]}
454 {% endfor %}
455       short_service_bootstrap_node:
456         yaql:
457           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten().first()]))
458           data:
459             l:
460 {% for role in roles %}
461               - {get_attr: [{{role.name}}IpListMap, short_service_bootstrap_hostnames]}
462 {% endfor %}
463       # FIXME(shardy): These require further work to move into service_ips
464       memcache_node_ips: {get_attr: [{{primary_role_name}}IpListMap, net_ip_map, {get_attr: [ServiceNetMap, service_net_map, MemcachedNetwork]}]}
465       NetVipMap: {get_attr: [VipMap, net_ip_map]}
466       RedisVirtualIP: {get_attr: [RedisVirtualIP, ip_address]}
467       ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map_lower]}
468       DeployIdentifier: {get_param: DeployIdentifier}
469       UpdateIdentifier: {get_param: UpdateIdentifier}
470
471   MysqlRootPassword:
472     type: OS::Heat::RandomString
473     properties:
474       length: 10
475
476   RabbitCookie:
477     type: OS::Heat::RandomString
478     properties:
479       length: 20
480       salt: {get_param: RabbitCookieSalt}
481
482   DefaultPasswords:
483     type: OS::TripleO::DefaultPasswords
484     properties:
485       DefaultMysqlRootPassword: {get_attr: [MysqlRootPassword, value]}
486       DefaultRabbitCookie: {get_attr: [RabbitCookie, value]}
487       DefaultHeatAuthEncryptionKey: {get_attr: [HeatAuthEncryptionKey, value]}
488       DefaultPcsdPassword: {get_attr: [PcsdPassword, value]}
489       DefaultHorizonSecret: {get_attr: [HorizonSecret, value]}
490
491   # creates the network architecture
492   Networks:
493     type: OS::TripleO::Network
494
495   ControlVirtualIP:
496     type: OS::TripleO::Network::Ports::ControlPlaneVipPort
497     depends_on: Networks
498     properties:
499       name: control_virtual_ip
500       network: {get_param: NeutronControlPlaneID}
501       fixed_ips: {get_param: ControlFixedIPs}
502       replacement_policy: AUTO
503
504   RedisVirtualIP:
505     depends_on: Networks
506     type: OS::TripleO::Network::Ports::RedisVipPort
507     properties:
508       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
509       ControlPlaneNetwork: {get_param: NeutronControlPlaneID}
510       PortName: redis_virtual_ip
511       NetworkName: {get_attr: [ServiceNetMap, service_net_map, RedisNetwork]}
512       ServiceName: redis
513       FixedIPs: {get_param: RedisVirtualFixedIPs}
514
515   # The public VIP is on the External net, falls back to ctlplane
516   PublicVirtualIP:
517     depends_on: Networks
518     type: OS::TripleO::Network::Ports::ExternalVipPort
519     properties:
520       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
521       ControlPlaneNetwork: {get_param: NeutronControlPlaneID}
522       PortName: public_virtual_ip
523       FixedIPs: {get_param: PublicVirtualFixedIPs}
524
525   InternalApiVirtualIP:
526     depends_on: Networks
527     type: OS::TripleO::Network::Ports::InternalApiVipPort
528     properties:
529       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
530       PortName: internal_api_virtual_ip
531       FixedIPs: {get_param: InternalApiVirtualFixedIPs}
532
533   StorageVirtualIP:
534     depends_on: Networks
535     type: OS::TripleO::Network::Ports::StorageVipPort
536     properties:
537       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
538       PortName: storage_virtual_ip
539       FixedIPs: {get_param: StorageVirtualFixedIPs}
540
541   StorageMgmtVirtualIP:
542     depends_on: Networks
543     type: OS::TripleO::Network::Ports::StorageMgmtVipPort
544     properties:
545       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
546       PortName: storage_management_virtual_ip
547       FixedIPs: {get_param: StorageMgmtVirtualFixedIPs}
548
549   VipMap:
550     type: OS::TripleO::Network::Ports::NetVipMap
551     properties:
552       ControlPlaneIp: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
553       ExternalIp: {get_attr: [PublicVirtualIP, ip_address]}
554       ExternalIpUri: {get_attr: [PublicVirtualIP, ip_address_uri]}
555       InternalApiIp: {get_attr: [InternalApiVirtualIP, ip_address]}
556       InternalApiIpUri: {get_attr: [InternalApiVirtualIP, ip_address_uri]}
557       StorageIp: {get_attr: [StorageVirtualIP, ip_address]}
558       StorageIpUri: {get_attr: [StorageVirtualIP, ip_address_uri]}
559       StorageMgmtIp: {get_attr: [StorageMgmtVirtualIP, ip_address]}
560       StorageMgmtIpUri: {get_attr: [StorageMgmtVirtualIP, ip_address_uri]}
561       # No tenant or management VIP required
562
563   # All Nodes Validations
564   AllNodesValidationConfig:
565     type: OS::TripleO::AllNodes::Validation
566     properties:
567       PingTestIps:
568         list_join:
569         - ' '
570         - - {get_attr: [{{primary_role_name}}, resource.0.external_ip_address]}
571           - {get_attr: [{{primary_role_name}}, resource.0.internal_api_ip_address]}
572           - {get_attr: [{{primary_role_name}}, resource.0.storage_ip_address]}
573           - {get_attr: [{{primary_role_name}}, resource.0.storage_mgmt_ip_address]}
574           - {get_attr: [{{primary_role_name}}, resource.0.tenant_ip_address]}
575           - {get_attr: [{{primary_role_name}}, resource.0.management_ip_address]}
576
577   UpdateWorkflow:
578     type: OS::TripleO::Tasks::UpdateWorkflow
579     depends_on:
580 {% for role in roles %}
581       - {{role.name}}AllNodesDeployment
582 {% endfor %}
583     properties:
584       servers:
585 {% for role in roles %}
586         {{role.name}}: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
587 {% endfor %}
588       input_values:
589         deploy_identifier: {get_param: DeployIdentifier}
590         update_identifier: {get_param: UpdateIdentifier}
591
592   # Optional ExtraConfig for all nodes - all roles are passed in here, but
593   # the nested template may configure each role differently (or not at all)
594   AllNodesExtraConfig:
595     type: OS::TripleO::AllNodesExtraConfig
596     depends_on:
597       - UpdateWorkflow
598 {% for role in roles %}
599       - {{role.name}}AllNodesValidationDeployment
600 {% endfor %}
601     properties:
602       servers:
603 {% for role in roles %}
604         {{role.name}}: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
605 {% endfor %}
606
607   # Post deployment steps for all roles
608   AllNodesDeploySteps:
609     type: OS::TripleO::PostDeploySteps
610     depends_on:
611 {% for role in roles %}
612       - {{role.name}}AllNodesDeployment
613 {% endfor %}
614     properties:
615       servers:
616 {% for role in roles %}
617         {{role.name}}: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
618 {% endfor %}
619       role_data:
620 {% for role in roles %}
621         {{role.name}}: {get_attr: [{{role.name}}ServiceChain, role_data]}
622 {% endfor %}
623
624 outputs:
625   ManagedEndpoints:
626     description: Asserts that the keystone endpoints have been provisioned.
627     value: true
628   KeystoneURL:
629     description: URL for the Overcloud Keystone service
630     value: {get_attr: [EndpointMapData, value, KeystonePublic, uri]}
631   KeystoneAdminVip:
632     description: Keystone Admin VIP endpoint
633     value: {get_attr: [VipMap, net_ip_map, {get_attr: [ServiceNetMap, service_net_map, KeystoneAdminApiNetwork]}]}
634   EndpointMap:
635     description: |
636       Mapping of the resources with the needed info for their endpoints.
637       This includes the protocol used, the IP, port and also a full
638       representation of the URI.
639     value: {get_attr: [EndpointMapData, value]}
640   HostsEntry:
641     description: |
642       The content that should be appended to your /etc/hosts if you want to get
643       hostname-based access to the deployed nodes (useful for testing without
644       setting up a DNS).
645     value:
646       list_join:
647       - "\n"
648       - - {get_attr: [hostsConfig, hosts_entries]}
649       - - {get_attr: [VipHosts, value]}
650   EnabledServices:
651     description: The services enabled on each role
652     value:
653 {% for role in roles %}
654       {{role.name}}: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
655 {% endfor %}
656   RoleData:
657     description: The configuration data associated with each role
658     value:
659 {% for role in roles %}
660       {{role.name}}: {get_attr: [{{role.name}}ServiceChain, role_data]}
661 {% endfor %}