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