Merge "Introduce network-based FQDNs via hiera"
[apex-tripleo-heat-templates.git] / puppet / objectstorage-role.yaml
1 heat_template_version: 2016-10-14
2 description: 'OpenStack swift storage node configured by Puppet'
3 parameters:
4   OvercloudSwiftStorageFlavor:
5     description: Flavor for Swift storage nodes to request when deploying.
6     default: baremetal
7     type: string
8     constraints:
9       - custom_constraint: nova.flavor
10   SwiftStorageImage:
11     default: overcloud-full
12     type: string
13     constraints:
14       - custom_constraint: glance.image
15   KeyName:
16     default: default
17     description: Name of an existing Nova key pair to enable SSH access to the instances
18     type: string
19   UpdateIdentifier:
20     default: ''
21     type: string
22     description: >
23       Setting to a previously unused value during stack-update will trigger
24       package update on all nodes
25   ServiceNetMap:
26     default: {}
27     description: Mapping of service_name -> network name. Typically set
28                  via parameter_defaults in the resource registry.
29     type: json
30   EndpointMap:
31     default: {}
32     description: Mapping of service endpoint -> protocol. Typically set
33                  via parameter_defaults in the resource registry.
34     type: json
35   Hostname:
36     type: string
37     default: '' # Defaults to Heat created hostname
38   HostnameMap:
39     type: json
40     default: {}
41     description: Optional mapping to override hostnames
42   ExtraConfig:
43     default: {}
44     description: |
45       Additional hiera configuration to inject into the cluster. Note
46       that ObjectStorageExtraConfig takes precedence over ExtraConfig.
47     type: json
48   ObjectStorageExtraConfig:
49     default: {}
50     description: |
51       Role specific additional hiera configuration to inject into the cluster.
52     type: json
53   SwiftStorageIPs:
54     default: {}
55     type: json
56   NetworkDeploymentActions:
57     type: comma_delimited_list
58     description: >
59       Heat action when to apply network configuration changes
60     default: ['CREATE']
61   SoftwareConfigTransport:
62     default: POLL_SERVER_CFN
63     description: |
64       How the server should receive the metadata required for software configuration.
65     type: string
66     constraints:
67     - allowed_values: [POLL_SERVER_CFN, POLL_SERVER_HEAT, POLL_TEMP_URL, ZAQAR_MESSAGE]
68   CloudDomain:
69     default: 'localdomain'
70     type: string
71     description: >
72       The DNS domain used for the hosts. This should match the dhcp_domain
73       configured in the Undercloud neutron. Defaults to localdomain.
74   ServerMetadata:
75     default: {}
76     description: >
77       Extra properties or metadata passed to Nova for the created nodes in
78       the overcloud. It's accessible via the Nova metadata API.
79     type: json
80   ObjectStorageSchedulerHints:
81     type: json
82     description: Optional scheduler hints to pass to nova
83     default: {}
84   NodeIndex:
85     type: number
86     default: 0
87   ServiceConfigSettings:
88     type: json
89     default: {}
90   ServiceNames:
91     type: comma_delimited_list
92     default: []
93   MonitoringSubscriptions:
94     type: comma_delimited_list
95     default: []
96   ConfigCommand:
97     type: string
98     description: Command which will be run whenever configuration data changes
99     default: os-refresh-config --timeout 14400
100
101 resources:
102
103   SwiftStorage:
104     type: OS::Nova::Server
105     metadata:
106       os-collect-config:
107         command: {get_param: ConfigCommand}
108     properties:
109       image: {get_param: SwiftStorageImage}
110       flavor: {get_param: OvercloudSwiftStorageFlavor}
111       key_name: {get_param: KeyName}
112       networks:
113         - network: ctlplane
114       user_data_format: SOFTWARE_CONFIG
115       user_data: {get_resource: UserData}
116       name:
117         str_replace:
118             template: {get_param: Hostname}
119             params: {get_param: HostnameMap}
120       software_config_transport: {get_param: SoftwareConfigTransport}
121       metadata: {get_param: ServerMetadata}
122       scheduler_hints: {get_param: ObjectStorageSchedulerHints}
123
124   # Combine the NodeAdminUserData and NodeUserData mime archives
125   UserData:
126     type: OS::Heat::MultipartMime
127     properties:
128       parts:
129       - config: {get_resource: NodeAdminUserData}
130         type: multipart
131       - config: {get_resource: NodeUserData}
132         type: multipart
133
134   # Creates the "heat-admin" user if configured via the environment
135   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
136   NodeAdminUserData:
137     type: OS::TripleO::NodeAdminUserData
138
139   # For optional operator additional userdata
140   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
141   NodeUserData:
142     type: OS::TripleO::NodeUserData
143
144   ExternalPort:
145     type: OS::TripleO::SwiftStorage::Ports::ExternalPort
146     properties:
147       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
148       IPPool: {get_param: SwiftStorageIPs}
149       NodeIndex: {get_param: NodeIndex}
150
151   InternalApiPort:
152     type: OS::TripleO::SwiftStorage::Ports::InternalApiPort
153     properties:
154       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
155       IPPool: {get_param: SwiftStorageIPs}
156       NodeIndex: {get_param: NodeIndex}
157
158   StoragePort:
159     type: OS::TripleO::SwiftStorage::Ports::StoragePort
160     properties:
161       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
162       IPPool: {get_param: SwiftStorageIPs}
163       NodeIndex: {get_param: NodeIndex}
164
165   StorageMgmtPort:
166     type: OS::TripleO::SwiftStorage::Ports::StorageMgmtPort
167     properties:
168       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
169       IPPool: {get_param: SwiftStorageIPs}
170       NodeIndex: {get_param: NodeIndex}
171
172   TenantPort:
173     type: OS::TripleO::SwiftStorage::Ports::TenantPort
174     properties:
175       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
176       IPPool: {get_param: SwiftStorageIPs}
177       NodeIndex: {get_param: NodeIndex}
178
179   ManagementPort:
180     type: OS::TripleO::SwiftStorage::Ports::ManagementPort
181     properties:
182       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
183       IPPool: {get_param: SwiftStorageIPs}
184       NodeIndex: {get_param: NodeIndex}
185
186   NetworkConfig:
187     type: OS::TripleO::ObjectStorage::Net::SoftwareConfig
188     properties:
189       ControlPlaneIp: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
190       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
191       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
192       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
193       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
194       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
195       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
196
197   NetIpMap:
198     type: OS::TripleO::Network::Ports::NetIpMap
199     properties:
200       ControlPlaneIp: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
201       ExternalIp: {get_attr: [ExternalPort, ip_address]}
202       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
203       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
204       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
205       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
206       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
207       StorageIp: {get_attr: [StoragePort, ip_address]}
208       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
209       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
210       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
211       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
212       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
213       TenantIp: {get_attr: [TenantPort, ip_address]}
214       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
215       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
216       ManagementIp: {get_attr: [ManagementPort, ip_address]}
217       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
218       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
219
220   NetworkDeployment:
221     type: OS::TripleO::SoftwareDeployment
222     properties:
223       name: NetworkDeployment
224       config: {get_resource: NetworkConfig}
225       server: {get_resource: SwiftStorage}
226       actions: {get_param: NetworkDeploymentActions}
227
228   SwiftStorageHieraConfig:
229     type: OS::Heat::StructuredConfig
230     properties:
231       group: hiera
232       config:
233         hierarchy:
234           - '"%{::uuid}"'
235           - heat_config_%{::deploy_config_name}
236           - object_extraconfig
237           - extraconfig
238           - service_names
239           - service_configs
240           - object
241           - bootstrap_node # provided by allNodesConfig
242           - all_nodes # provided by allNodesConfig
243           - vip_data # provided by allNodesConfig
244           - '"%{::osfamily}"'
245         merge_behavior: deeper
246         datafiles:
247           service_names:
248             service_names: {get_param: ServiceNames}
249             sensu::subscriptions: {get_param: MonitoringSubscriptions}
250           service_configs:
251             map_replace:
252               - {get_param: ServiceConfigSettings}
253               - values: {get_attr: [NetIpMap, net_ip_map]}
254           object_extraconfig: {get_param: ObjectStorageExtraConfig}
255           extraconfig: {get_param: ExtraConfig}
256           object:
257             tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
258             fqdn_internal_api:
259               list_join:
260               - '.'
261               - - {get_attr: [SwiftStorage, name]}
262                 - internalapi
263                 - {get_param: CloudDomain}
264             fqdn_storage:
265               list_join:
266               - '.'
267               - - {get_attr: [SwiftStorage, name]}
268                 - storage
269                 - {get_param: CloudDomain}
270             fqdn_storage_mgmt:
271               list_join:
272               - '.'
273               - - {get_attr: [SwiftStorage, name]}
274                 - storagemgmt
275                 - {get_param: CloudDomain}
276             fqdn_tenant:
277               list_join:
278               - '.'
279               - - {get_attr: [SwiftStorage, name]}
280                 - tenant
281                 - {get_param: CloudDomain}
282             fqdn_management:
283               list_join:
284               - '.'
285               - - {get_attr: [SwiftStorage, name]}
286                 - management
287                 - {get_param: CloudDomain}
288             fqdn_ctlplane:
289               list_join:
290               - '.'
291               - - {get_attr: [SwiftStorage, name]}
292                 - ctlplane
293                 - {get_param: CloudDomain}
294
295
296   SwiftStorageHieraDeploy:
297     type: OS::Heat::StructuredDeployment
298     depends_on: NetworkDeployment
299     properties:
300       name: SwiftStorageHieraDeploy
301       server: {get_resource: SwiftStorage}
302       config: {get_resource: SwiftStorageHieraConfig}
303       input_values:
304         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
305
306   # Resource for site-specific injection of root certificate
307   NodeTLSCAData:
308     depends_on: SwiftStorageHieraDeploy
309     type: OS::TripleO::NodeTLSCAData
310     properties:
311       server: {get_resource: SwiftStorage}
312
313   # Hook for site-specific additional pre-deployment config,
314   # applying to all nodes, e.g node registration/unregistration
315   NodeExtraConfig:
316     depends_on: NodeTLSCAData
317     type: OS::TripleO::NodeExtraConfig
318     properties:
319         server: {get_resource: SwiftStorage}
320
321   UpdateConfig:
322     type: OS::TripleO::Tasks::PackageUpdate
323
324   UpdateDeployment:
325     type: OS::Heat::SoftwareDeployment
326     properties:
327       config: {get_resource: UpdateConfig}
328       server: {get_resource: SwiftStorage}
329       input_values:
330         update_identifier:
331           get_param: UpdateIdentifier
332
333 outputs:
334   ip_address:
335     description: IP address of the server in the ctlplane network
336     value: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
337   hostname:
338     description: Hostname of the server
339     value: {get_attr: [SwiftStorage, name]}
340   hostname_map:
341     description: Mapping of network names to hostnames
342     value:
343       external:
344         list_join:
345         - '.'
346         - - {get_attr: [SwiftStorage, name]}
347           - external
348           - {get_param: CloudDomain}
349       internal_api:
350         list_join:
351         - '.'
352         - - {get_attr: [SwiftStorage, name]}
353           - internalapi
354           - {get_param: CloudDomain}
355       storage:
356         list_join:
357         - '.'
358         - - {get_attr: [SwiftStorage, name]}
359           - storage
360           - {get_param: CloudDomain}
361       storage_mgmt:
362         list_join:
363         - '.'
364         - - {get_attr: [SwiftStorage, name]}
365           - storagemgmt
366           - {get_param: CloudDomain}
367       tenant:
368         list_join:
369         - '.'
370         - - {get_attr: [SwiftStorage, name]}
371           - tenant
372           - {get_param: CloudDomain}
373       management:
374         list_join:
375         - '.'
376         - - {get_attr: [SwiftStorage, name]}
377           - management
378           - {get_param: CloudDomain}
379       ctlplane:
380         list_join:
381         - '.'
382         - - {get_attr: [SwiftStorage, name]}
383           - ctlplane
384           - {get_param: CloudDomain}
385   hosts_entry:
386     value:
387       str_replace:
388         template: |
389           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
390           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
391           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
392           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
393           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
394           TENANTIP TENANTHOST.DOMAIN TENANTHOST
395           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
396           CTLPLANEIP CTLPLANEHOST.DOMAIN CTLPLANEHOST
397         params:
398           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, ObjectStorageHostnameResolveNetwork]}]}
399           DOMAIN: {get_param: CloudDomain}
400           PRIMARYHOST: {get_attr: [SwiftStorage, name]}
401           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
402           EXTERNALHOST:
403             list_join:
404             - '.'
405             - - {get_attr: [SwiftStorage, name]}
406               - external
407           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
408           INTERNAL_APIHOST:
409             list_join:
410             - '.'
411             - - {get_attr: [SwiftStorage, name]}
412               - internalapi
413           STORAGEIP: {get_attr: [StoragePort, ip_address]}
414           STORAGEHOST:
415             list_join:
416             - '.'
417             - - {get_attr: [SwiftStorage, name]}
418               - storage
419           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
420           STORAGE_MGMTHOST:
421             list_join:
422             - '.'
423             - - {get_attr: [SwiftStorage, name]}
424               - storagemgmt
425           TENANTIP: {get_attr: [TenantPort, ip_address]}
426           TENANTHOST:
427             list_join:
428             - '.'
429             - - {get_attr: [SwiftStorage, name]}
430               - tenant
431           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
432           MANAGEMENTHOST:
433             list_join:
434             - '.'
435             - - {get_attr: [SwiftStorage, name]}
436               - management
437           CTLPLANEIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
438           CTLPLANEHOST:
439             list_join:
440             - '.'
441             - - {get_attr: [SwiftStorage, name]}
442               - ctlplane
443   nova_server_resource:
444     description: Heat resource handle for the swift storage server
445     value:
446       {get_resource: SwiftStorage}
447   external_ip_address:
448     description: IP address of the server in the external network
449     value: {get_attr: [ExternalPort, ip_address]}
450   internal_api_ip_address:
451     description: IP address of the server in the internal_api network
452     value: {get_attr: [InternalApiPort, ip_address]}
453   storage_ip_address:
454     description: IP address of the server in the storage network
455     value: {get_attr: [StoragePort, ip_address]}
456   storage_mgmt_ip_address:
457     description: IP address of the server in the storage_mgmt network
458     value: {get_attr: [StorageMgmtPort, ip_address]}
459   tenant_ip_address:
460     description: IP address of the server in the tenant network
461     value: {get_attr: [TenantPort, ip_address]}
462   management_ip_address:
463     description: IP address of the server in the management network
464     value: {get_attr: [ManagementPort, ip_address]}