Merge "Provide a default value for Ironic cleaning_network configuration"
[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   # Jinja loop for Role in roles_data.yaml
247 {% for role in roles %}
248   # Resources generated for {{role.name}} Role
249   {{role.name}}ServiceChain:
250     type: OS::TripleO::Services
251     properties:
252       Services:
253         get_param: {{role.name}}Services
254       ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map]}
255       EndpointMap: {get_attr: [EndpointMap, endpoint_map]}
256       DefaultPasswords: {get_attr: [DefaultPasswords, passwords]}
257
258   {{role.name}}HostsDeployment:
259     type: OS::Heat::StructuredDeployments
260     properties:
261       name: {{role.name}}HostsDeployment
262       config: {get_attr: [hostsConfig, config_id]}
263       servers: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
264
265   {{role.name}}AllNodesDeployment:
266     type: OS::Heat::StructuredDeployments
267     depends_on:
268 {% for role_inner in roles %}
269       - {{role_inner.name}}HostsDeployment
270 {% endfor %}
271     properties:
272       name: {{role.name}}AllNodesDeployment
273       config: {get_attr: [allNodesConfig, config_id]}
274       servers: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
275       input_values:
276         # Note we have to use yaql to look up the first hostname/ip in the
277         # list because heat path based attributes operate on the attribute
278         # inside the ResourceGroup, not the exposed list ref discussion in
279         # https://bugs.launchpad.net/heat/+bug/1640488
280         # The coalesce is needed because $.data is None during heat validation
281         bootstrap_nodeid:
282           yaql:
283             expression: coalesce($.data, []).first(null)
284             data: {get_attr: [{{role.name}}, hostname]}
285         bootstrap_nodeid_ip:
286           yaql:
287             expression: coalesce($.data, []).first(null)
288             data: {get_attr: [{{role.name}}, ip_address]}
289
290   {{role.name}}AllNodesValidationDeployment:
291     type: OS::Heat::StructuredDeployments
292     depends_on: {{role.name}}AllNodesDeployment
293     properties:
294       name: {{role.name}}AllNodesValidationDeployment
295       config: {get_resource: AllNodesValidationConfig}
296       servers: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
297
298   {{role.name}}IpListMap:
299     type: OS::TripleO::Network::Ports::NetIpListMap
300     properties:
301       ControlPlaneIpList: {get_attr: [{{role.name}}, ip_address]}
302       ExternalIpList: {get_attr: [{{role.name}}, external_ip_address]}
303       InternalApiIpList: {get_attr: [{{role.name}}, internal_api_ip_address]}
304       StorageIpList: {get_attr: [{{role.name}}, storage_ip_address]}
305       StorageMgmtIpList: {get_attr: [{{role.name}}, storage_mgmt_ip_address]}
306       TenantIpList: {get_attr: [{{role.name}}, tenant_ip_address]}
307       ManagementIpList: {get_attr: [{{role.name}}, management_ip_address]}
308       EnabledServices: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
309       ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map_lower]}
310       ServiceHostnameList: {get_attr: [{{role.name}}, hostname]}
311       NetworkHostnameMap:
312         # Note (shardy) this somewhat complex yaql may be replaced
313         # with a map_deep_merge function in ocata.  It merges the
314         # list of maps, but appends to colliding lists so we can
315         # create a map of lists for all nodes for each network
316         yaql:
317           expression: dict($.data.where($ != null).flatten().selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
318           data:
319             - {get_attr: [{{role.name}}, hostname_map]}
320
321   {{role.name}}:
322     type: OS::Heat::ResourceGroup
323     depends_on: Networks
324     properties:
325       count: {get_param: {{role.name}}Count}
326       removal_policies: {get_param: {{role.name}}RemovalPolicies}
327       resource_def:
328         type: OS::TripleO::{{role.name}}
329         properties:
330           CloudDomain: {get_param: CloudDomain}
331           ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map]}
332           EndpointMap: {get_attr: [EndpointMap, endpoint_map]}
333           Hostname:
334             str_replace:
335               template: {get_param: {{role.name}}HostnameFormat}
336               params:
337                 '%stackname%': {get_param: 'OS::stack_name'}
338           NodeIndex: '%index%'
339   {% if role.name != 'Compute' %}
340           {{role.name}}SchedulerHints: {get_param: {{role.name}}SchedulerHints}
341   {% else %}
342           NovaComputeSchedulerHints: {get_param: NovaComputeSchedulerHints}
343   {% endif %}
344           ServiceConfigSettings:
345             map_merge:
346               -  get_attr: [{{role.name}}ServiceChain, role_data, config_settings]
347           {% for r in roles %}
348               - get_attr: [{{r.name}}ServiceChain, role_data, global_config_settings]
349           {% endfor %}
350               # This next step combines two yaql passes:
351               # - The inner one does a deep merge on the service_config_settings for all roles
352               # - The outer one filters the map based on the services enabled for the role
353               #   then merges the result into one map.
354               - yaql:
355                   expression: let(root => $) -> $.data.map.items().where($[0] in coalesce($root.data.services, [])).select($[1]).reduce($1.mergeWith($2), {})
356                   data:
357                     map:
358                       yaql:
359                         expression: $.data.where($ != null).reduce($1.mergeWith($2), {})
360                         data:
361                         {% for r in roles %}
362                           - get_attr: [{{r.name}}ServiceChain, role_data, service_config_settings]
363                         {% endfor %}
364                     services: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
365           ServiceNames: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
366           MonitoringSubscriptions: {get_attr: [{{role.name}}ServiceChain, role_data, monitoring_subscriptions]}
367           ServiceMetadataSettings: {get_attr: [{{role.name}}ServiceChain, role_data, service_metadata_settings]}
368 {% endfor %}
369
370   hostsConfig:
371     type: OS::TripleO::Hosts::SoftwareConfig
372     properties:
373       hosts:
374         list_join:
375         - "\n"
376         - - if:
377             - add_vips_to_etc_hosts
378             - {get_attr: [VipHosts, value]}
379             - ''
380         -
381 {% for role in roles %}
382           - list_join:
383             - "\n"
384             - {get_attr: [{{role.name}}, hosts_entry]}
385 {% endfor %}
386
387   allNodesConfig:
388     type: OS::TripleO::AllNodes::SoftwareConfig
389     properties:
390       cloud_name_external: {get_param: CloudName}
391       cloud_name_internal_api: {get_param: CloudNameInternal}
392       cloud_name_storage: {get_param: CloudNameStorage}
393       cloud_name_storage_mgmt: {get_param: CloudNameStorageManagement}
394       cloud_name_ctlplane: {get_param: CloudNameCtlplane}
395       enabled_services:
396         list_join:
397           - ','
398 {% for role in roles %}
399           - {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
400 {% endfor %}
401       logging_groups:
402         yaql:
403           expression: >
404             $.data.groups.flatten()
405           data:
406             groups:
407 {% for role in roles %}
408               - {get_attr: [{{role.name}}ServiceChain, role_data, logging_groups]}
409 {% endfor %}
410       logging_sources:
411         yaql:
412           expression: >
413             $.data.sources.flatten()
414           data:
415             sources:
416 {% for role in roles %}
417               - {get_attr: [{{role.name}}ServiceChain, role_data, logging_sources]}
418 {% endfor %}
419       controller_ips: {get_attr: [{{primary_role_name}}, ip_address]}
420       controller_names: {get_attr: [{{primary_role_name}}, hostname]}
421       service_ips:
422         # Note (shardy) this somewhat complex yaql may be replaced
423         # with a map_deep_merge function in ocata.  It merges the
424         # list of maps, but appends to colliding lists when a service
425         # is deployed on more than one role
426         yaql:
427           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
428           data:
429             l:
430 {% for role in roles %}
431               - {get_attr: [{{role.name}}IpListMap, service_ips]}
432 {% endfor %}
433       service_node_names:
434         yaql:
435           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
436           data:
437             l:
438 {% for role in roles %}
439               - {get_attr: [{{role.name}}IpListMap, service_hostnames]}
440 {% endfor %}
441       short_service_node_names:
442         yaql:
443           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten()]))
444           data:
445             l:
446 {% for role in roles %}
447               - {get_attr: [{{role.name}}IpListMap, short_service_hostnames]}
448 {% endfor %}
449       short_service_bootstrap_node:
450         yaql:
451           expression: dict($.data.l.where($ != null).selectMany($.items()).groupBy($[0], $[1], [$[0], $[1].flatten().first()]))
452           data:
453             l:
454 {% for role in roles %}
455               - {get_attr: [{{role.name}}IpListMap, short_service_bootstrap_hostnames]}
456 {% endfor %}
457       # FIXME(shardy): These require further work to move into service_ips
458       memcache_node_ips: {get_attr: [{{primary_role_name}}IpListMap, net_ip_map, {get_attr: [ServiceNetMap, service_net_map, MemcachedNetwork]}]}
459       NetVipMap: {get_attr: [VipMap, net_ip_map]}
460       RedisVirtualIP: {get_attr: [RedisVirtualIP, ip_address]}
461       ServiceNetMap: {get_attr: [ServiceNetMap, service_net_map_lower]}
462       DeployIdentifier: {get_param: DeployIdentifier}
463       UpdateIdentifier: {get_param: UpdateIdentifier}
464
465   MysqlRootPassword:
466     type: OS::Heat::RandomString
467     properties:
468       length: 10
469
470   RabbitCookie:
471     type: OS::Heat::RandomString
472     properties:
473       length: 20
474       salt: {get_param: RabbitCookieSalt}
475
476   DefaultPasswords:
477     type: OS::TripleO::DefaultPasswords
478     properties:
479       DefaultMysqlRootPassword: {get_attr: [MysqlRootPassword, value]}
480       DefaultRabbitCookie: {get_attr: [RabbitCookie, value]}
481       DefaultHeatAuthEncryptionKey: {get_attr: [HeatAuthEncryptionKey, value]}
482       DefaultPcsdPassword: {get_attr: [PcsdPassword, value]}
483       DefaultHorizonSecret: {get_attr: [HorizonSecret, value]}
484
485   # creates the network architecture
486   Networks:
487     type: OS::TripleO::Network
488
489   ControlVirtualIP:
490     type: OS::TripleO::Network::Ports::ControlPlaneVipPort
491     depends_on: Networks
492     properties:
493       name: control_virtual_ip
494       network: {get_param: NeutronControlPlaneID}
495       fixed_ips: {get_param: ControlFixedIPs}
496       replacement_policy: AUTO
497
498   RedisVirtualIP:
499     depends_on: Networks
500     type: OS::TripleO::Network::Ports::RedisVipPort
501     properties:
502       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
503       ControlPlaneNetwork: {get_param: NeutronControlPlaneID}
504       PortName: redis_virtual_ip
505       NetworkName: {get_attr: [ServiceNetMap, service_net_map, RedisNetwork]}
506       ServiceName: redis
507       FixedIPs: {get_param: RedisVirtualFixedIPs}
508
509   # The public VIP is on the External net, falls back to ctlplane
510   PublicVirtualIP:
511     depends_on: Networks
512     type: OS::TripleO::Network::Ports::ExternalVipPort
513     properties:
514       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
515       ControlPlaneNetwork: {get_param: NeutronControlPlaneID}
516       PortName: public_virtual_ip
517       FixedIPs: {get_param: PublicVirtualFixedIPs}
518
519   InternalApiVirtualIP:
520     depends_on: Networks
521     type: OS::TripleO::Network::Ports::InternalApiVipPort
522     properties:
523       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
524       PortName: internal_api_virtual_ip
525       FixedIPs: {get_param: InternalApiVirtualFixedIPs}
526
527   StorageVirtualIP:
528     depends_on: Networks
529     type: OS::TripleO::Network::Ports::StorageVipPort
530     properties:
531       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
532       PortName: storage_virtual_ip
533       FixedIPs: {get_param: StorageVirtualFixedIPs}
534
535   StorageMgmtVirtualIP:
536     depends_on: Networks
537     type: OS::TripleO::Network::Ports::StorageMgmtVipPort
538     properties:
539       ControlPlaneIP: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
540       PortName: storage_management_virtual_ip
541       FixedIPs: {get_param: StorageMgmtVirtualFixedIPs}
542
543   VipMap:
544     type: OS::TripleO::Network::Ports::NetVipMap
545     properties:
546       ControlPlaneIp: {get_attr: [ControlVirtualIP, fixed_ips, 0, ip_address]}
547       ExternalIp: {get_attr: [PublicVirtualIP, ip_address]}
548       ExternalIpUri: {get_attr: [PublicVirtualIP, ip_address_uri]}
549       InternalApiIp: {get_attr: [InternalApiVirtualIP, ip_address]}
550       InternalApiIpUri: {get_attr: [InternalApiVirtualIP, ip_address_uri]}
551       StorageIp: {get_attr: [StorageVirtualIP, ip_address]}
552       StorageIpUri: {get_attr: [StorageVirtualIP, ip_address_uri]}
553       StorageMgmtIp: {get_attr: [StorageMgmtVirtualIP, ip_address]}
554       StorageMgmtIpUri: {get_attr: [StorageMgmtVirtualIP, ip_address_uri]}
555       # No tenant or management VIP required
556
557   # All Nodes Validations
558   AllNodesValidationConfig:
559     type: OS::TripleO::AllNodes::Validation
560     properties:
561       PingTestIps:
562         list_join:
563         - ' '
564         - - {get_attr: [{{primary_role_name}}, resource.0.external_ip_address]}
565           - {get_attr: [{{primary_role_name}}, resource.0.internal_api_ip_address]}
566           - {get_attr: [{{primary_role_name}}, resource.0.storage_ip_address]}
567           - {get_attr: [{{primary_role_name}}, resource.0.storage_mgmt_ip_address]}
568           - {get_attr: [{{primary_role_name}}, resource.0.tenant_ip_address]}
569           - {get_attr: [{{primary_role_name}}, resource.0.management_ip_address]}
570
571   UpdateWorkflow:
572     type: OS::TripleO::Tasks::UpdateWorkflow
573     depends_on:
574 {% for role in roles %}
575       - {{role.name}}AllNodesDeployment
576 {% endfor %}
577     properties:
578       servers:
579 {% for role in roles %}
580         {{role.name}}: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
581 {% endfor %}
582       input_values:
583         deploy_identifier: {get_param: DeployIdentifier}
584         update_identifier: {get_param: UpdateIdentifier}
585
586   # Optional ExtraConfig for all nodes - all roles are passed in here, but
587   # the nested template may configure each role differently (or not at all)
588   AllNodesExtraConfig:
589     type: OS::TripleO::AllNodesExtraConfig
590     depends_on:
591       - UpdateWorkflow
592 {% for role in roles %}
593       - {{role.name}}AllNodesValidationDeployment
594 {% endfor %}
595     properties:
596       servers:
597 {% for role in roles %}
598         {{role.name}}: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
599 {% endfor %}
600
601   # Post deployment steps for all roles
602   AllNodesDeploySteps:
603     type: OS::TripleO::PostDeploySteps
604     depends_on:
605 {% for role in roles %}
606       - {{role.name}}AllNodesDeployment
607 {% endfor %}
608     properties:
609       servers:
610 {% for role in roles %}
611         {{role.name}}: {get_attr: [{{role.name}}, attributes, nova_server_resource]}
612 {% endfor %}
613       role_data:
614 {% for role in roles %}
615         {{role.name}}: {get_attr: [{{role.name}}ServiceChain, role_data]}
616 {% endfor %}
617
618 outputs:
619   ManagedEndpoints:
620     description: Asserts that the keystone endpoints have been provisioned.
621     value: true
622   KeystoneURL:
623     description: URL for the Overcloud Keystone service
624     value: {get_attr: [EndpointMap, endpoint_map, KeystonePublic, uri]}
625   KeystoneAdminVip:
626     description: Keystone Admin VIP endpoint
627     value: {get_attr: [VipMap, net_ip_map, {get_attr: [ServiceNetMap, service_net_map, KeystoneAdminApiNetwork]}]}
628   EndpointMap:
629     description: |
630       Mapping of the resources with the needed info for their endpoints.
631       This includes the protocol used, the IP, port and also a full
632       representation of the URI.
633     value: {get_attr: [EndpointMap, endpoint_map]}
634   HostsEntry:
635     description: |
636       The content that should be appended to your /etc/hosts if you want to get
637       hostname-based access to the deployed nodes (useful for testing without
638       setting up a DNS).
639     value:
640       list_join:
641       - "\n"
642       - - {get_attr: [hostsConfig, hosts_entries]}
643       - - {get_attr: [VipHosts, value]}
644   EnabledServices:
645     description: The services enabled on each role
646     value:
647 {% for role in roles %}
648       {{role.name}}: {get_attr: [{{role.name}}ServiceChain, role_data, service_names]}
649 {% endfor %}
650   RoleData:
651     description: The configuration data associated with each role
652     value:
653 {% for role in roles %}
654       {{role.name}}: {get_attr: [{{role.name}}ServiceChain, role_data]}
655 {% endfor %}