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