Merge "Specify the Ceph packages to be installed"
[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     type: string
70     description: >
71       The DNS domain used for the hosts. This should match the dhcp_domain
72       configured in the Undercloud neutron. Defaults to localdomain.
73   ServerMetadata:
74     default: {}
75     description: >
76       Extra properties or metadata passed to Nova for the created nodes in
77       the overcloud. It's accessible via the Nova metadata API.
78     type: json
79   ObjectStorageSchedulerHints:
80     type: json
81     description: Optional scheduler hints to pass to nova
82     default: {}
83   NodeIndex:
84     type: number
85     default: 0
86   ServiceConfigSettings:
87     type: json
88     default: {}
89   ServiceNames:
90     type: comma_delimited_list
91     default: []
92   MonitoringSubscriptions:
93     type: comma_delimited_list
94     default: []
95   ConfigCommand:
96     type: string
97     description: Command which will be run whenever configuration data changes
98     default: os-refresh-config --timeout 14400
99
100 resources:
101
102   SwiftStorage:
103     type: OS::Nova::Server
104     metadata:
105       os-collect-config:
106         command: {get_param: ConfigCommand}
107     properties:
108       image: {get_param: SwiftStorageImage}
109       flavor: {get_param: OvercloudSwiftStorageFlavor}
110       key_name: {get_param: KeyName}
111       networks:
112         - network: ctlplane
113       user_data_format: SOFTWARE_CONFIG
114       user_data: {get_resource: UserData}
115       name:
116         str_replace:
117             template: {get_param: Hostname}
118             params: {get_param: HostnameMap}
119       software_config_transport: {get_param: SoftwareConfigTransport}
120       metadata: {get_param: ServerMetadata}
121       scheduler_hints: {get_param: ObjectStorageSchedulerHints}
122
123   # Combine the NodeAdminUserData and NodeUserData mime archives
124   UserData:
125     type: OS::Heat::MultipartMime
126     properties:
127       parts:
128       - config: {get_resource: NodeAdminUserData}
129         type: multipart
130       - config: {get_resource: NodeUserData}
131         type: multipart
132
133   # Creates the "heat-admin" user if configured via the environment
134   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
135   NodeAdminUserData:
136     type: OS::TripleO::NodeAdminUserData
137
138   # For optional operator additional userdata
139   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
140   NodeUserData:
141     type: OS::TripleO::NodeUserData
142
143   ExternalPort:
144     type: OS::TripleO::SwiftStorage::Ports::ExternalPort
145     properties:
146       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
147       IPPool: {get_param: SwiftStorageIPs}
148       NodeIndex: {get_param: NodeIndex}
149
150   InternalApiPort:
151     type: OS::TripleO::SwiftStorage::Ports::InternalApiPort
152     properties:
153       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
154       IPPool: {get_param: SwiftStorageIPs}
155       NodeIndex: {get_param: NodeIndex}
156
157   StoragePort:
158     type: OS::TripleO::SwiftStorage::Ports::StoragePort
159     properties:
160       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
161       IPPool: {get_param: SwiftStorageIPs}
162       NodeIndex: {get_param: NodeIndex}
163
164   StorageMgmtPort:
165     type: OS::TripleO::SwiftStorage::Ports::StorageMgmtPort
166     properties:
167       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
168       IPPool: {get_param: SwiftStorageIPs}
169       NodeIndex: {get_param: NodeIndex}
170
171   TenantPort:
172     type: OS::TripleO::SwiftStorage::Ports::TenantPort
173     properties:
174       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
175       IPPool: {get_param: SwiftStorageIPs}
176       NodeIndex: {get_param: NodeIndex}
177
178   ManagementPort:
179     type: OS::TripleO::SwiftStorage::Ports::ManagementPort
180     properties:
181       ControlPlaneIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
182       IPPool: {get_param: SwiftStorageIPs}
183       NodeIndex: {get_param: NodeIndex}
184
185   NetworkConfig:
186     type: OS::TripleO::ObjectStorage::Net::SoftwareConfig
187     properties:
188       ControlPlaneIp: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
189       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
190       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
191       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
192       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
193       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
194       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
195
196   NetIpMap:
197     type: OS::TripleO::Network::Ports::NetIpMap
198     properties:
199       ControlPlaneIp: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
200       ExternalIp: {get_attr: [ExternalPort, ip_address]}
201       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
202       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
203       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
204       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
205       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
206       StorageIp: {get_attr: [StoragePort, ip_address]}
207       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
208       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
209       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
210       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
211       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
212       TenantIp: {get_attr: [TenantPort, ip_address]}
213       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
214       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
215       ManagementIp: {get_attr: [ManagementPort, ip_address]}
216       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
217       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
218
219   NetworkDeployment:
220     type: OS::TripleO::SoftwareDeployment
221     properties:
222       name: NetworkDeployment
223       config: {get_resource: NetworkConfig}
224       server: {get_resource: SwiftStorage}
225       actions: {get_param: NetworkDeploymentActions}
226
227   SwiftStorageHieraConfig:
228     type: OS::Heat::StructuredConfig
229     properties:
230       group: os-apply-config
231       config:
232         hiera:
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               mapped_data:
249                 service_names: {get_param: ServiceNames}
250                 sensu::subscriptions: {get_param: MonitoringSubscriptions}
251             service_configs:
252               mapped_data:
253                 map_replace:
254                   - {get_param: ServiceConfigSettings}
255                   - values: {get_attr: [NetIpMap, net_ip_map]}
256             object_extraconfig:
257               mapped_data: {get_param: ObjectStorageExtraConfig}
258             extraconfig:
259               mapped_data: {get_param: ExtraConfig}
260             object:
261               mapped_data: # data supplied directly to this deployment configuration, etc
262                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
263
264
265   SwiftStorageHieraDeploy:
266     type: OS::Heat::StructuredDeployment
267     depends_on: NetworkDeployment
268     properties:
269       name: SwiftStorageHieraDeploy
270       server: {get_resource: SwiftStorage}
271       config: {get_resource: SwiftStorageHieraConfig}
272       input_values:
273         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
274
275   # Resource for site-specific injection of root certificate
276   NodeTLSCAData:
277     depends_on: SwiftStorageHieraDeploy
278     type: OS::TripleO::NodeTLSCAData
279     properties:
280       server: {get_resource: SwiftStorage}
281
282   # Hook for site-specific additional pre-deployment config,
283   # applying to all nodes, e.g node registration/unregistration
284   NodeExtraConfig:
285     depends_on: NodeTLSCAData
286     type: OS::TripleO::NodeExtraConfig
287     properties:
288         server: {get_resource: SwiftStorage}
289
290   UpdateConfig:
291     type: OS::TripleO::Tasks::PackageUpdate
292
293   UpdateDeployment:
294     type: OS::Heat::SoftwareDeployment
295     properties:
296       config: {get_resource: UpdateConfig}
297       server: {get_resource: SwiftStorage}
298       input_values:
299         update_identifier:
300           get_param: UpdateIdentifier
301
302 outputs:
303   ip_address:
304     description: IP address of the server in the ctlplane network
305     value: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
306   hostname:
307     description: Hostname of the server
308     value: {get_attr: [SwiftStorage, name]}
309   hostname_map:
310     description: Mapping of network names to hostnames
311     value:
312       external:
313         list_join:
314         - '.'
315         - - {get_attr: [SwiftStorage, name]}
316           - external
317           - {get_param: CloudDomain}
318       internal_api:
319         list_join:
320         - '.'
321         - - {get_attr: [SwiftStorage, name]}
322           - internalapi
323           - {get_param: CloudDomain}
324       storage:
325         list_join:
326         - '.'
327         - - {get_attr: [SwiftStorage, name]}
328           - storage
329           - {get_param: CloudDomain}
330       storage_mgmt:
331         list_join:
332         - '.'
333         - - {get_attr: [SwiftStorage, name]}
334           - storagemgmt
335           - {get_param: CloudDomain}
336       tenant:
337         list_join:
338         - '.'
339         - - {get_attr: [SwiftStorage, name]}
340           - tenant
341           - {get_param: CloudDomain}
342       management:
343         list_join:
344         - '.'
345         - - {get_attr: [SwiftStorage, name]}
346           - management
347           - {get_param: CloudDomain}
348       ctlplane:
349         list_join:
350         - '.'
351         - - {get_attr: [SwiftStorage, name]}
352           - ctlplane
353           - {get_param: CloudDomain}
354   hosts_entry:
355     value:
356       str_replace:
357         template: |
358           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
359           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
360           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
361           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
362           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
363           TENANTIP TENANTHOST.DOMAIN TENANTHOST
364           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
365           CTLPLANEIP CTLPLANEHOST.DOMAIN CTLPLANEHOST
366         params:
367           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, ObjectStorageHostnameResolveNetwork]}]}
368           DOMAIN: {get_param: CloudDomain}
369           PRIMARYHOST: {get_attr: [SwiftStorage, name]}
370           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
371           EXTERNALHOST:
372             list_join:
373             - '.'
374             - - {get_attr: [SwiftStorage, name]}
375               - external
376           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
377           INTERNAL_APIHOST:
378             list_join:
379             - '.'
380             - - {get_attr: [SwiftStorage, name]}
381               - internalapi
382           STORAGEIP: {get_attr: [StoragePort, ip_address]}
383           STORAGEHOST:
384             list_join:
385             - '.'
386             - - {get_attr: [SwiftStorage, name]}
387               - storage
388           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
389           STORAGE_MGMTHOST:
390             list_join:
391             - '.'
392             - - {get_attr: [SwiftStorage, name]}
393               - storagemgmt
394           TENANTIP: {get_attr: [TenantPort, ip_address]}
395           TENANTHOST:
396             list_join:
397             - '.'
398             - - {get_attr: [SwiftStorage, name]}
399               - tenant
400           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
401           MANAGEMENTHOST:
402             list_join:
403             - '.'
404             - - {get_attr: [SwiftStorage, name]}
405               - management
406           CTLPLANEIP: {get_attr: [SwiftStorage, networks, ctlplane, 0]}
407           CTLPLANEHOST:
408             list_join:
409             - '.'
410             - - {get_attr: [SwiftStorage, name]}
411               - ctlplane
412   nova_server_resource:
413     description: Heat resource handle for the swift storage server
414     value:
415       {get_resource: SwiftStorage}
416   external_ip_address:
417     description: IP address of the server in the external network
418     value: {get_attr: [ExternalPort, ip_address]}
419   internal_api_ip_address:
420     description: IP address of the server in the internal_api network
421     value: {get_attr: [InternalApiPort, ip_address]}
422   storage_ip_address:
423     description: IP address of the server in the storage network
424     value: {get_attr: [StoragePort, ip_address]}
425   storage_mgmt_ip_address:
426     description: IP address of the server in the storage_mgmt network
427     value: {get_attr: [StorageMgmtPort, ip_address]}
428   tenant_ip_address:
429     description: IP address of the server in the tenant network
430     value: {get_attr: [TenantPort, ip_address]}
431   management_ip_address:
432     description: IP address of the server in the management network
433     value: {get_attr: [ManagementPort, ip_address]}