Merge "composable heat services"
[apex-tripleo-heat-templates.git] / puppet / ceph-storage.yaml
1 heat_template_version: 2015-04-30
2 description: 'OpenStack ceph storage node configured by Puppet'
3 parameters:
4   Flavor:
5     description: Flavor for the Ceph Storage node.
6     type: string
7     constraints:
8       - custom_constraint: nova.flavor
9   Image:
10     type: string
11     default: overcloud-ceph-storage
12     constraints:
13       - custom_constraint: glance.image
14   ImageUpdatePolicy:
15     default: 'REBUILD_PRESERVE_EPHEMERAL'
16     description: What policy to use when reconstructing instances. REBUILD for rebuilds, REBUILD_PRESERVE_EPHEMERAL to preserve /mnt.
17     type: string
18   KeyName:
19     description: Name of an existing Nova key pair to enable SSH access to the instances
20     type: string
21     default: default
22     constraints:
23       - custom_constraint: nova.keypair
24   NtpServer:
25     default: ''
26     description: Comma-separated list of ntp servers
27     type: comma_delimited_list
28   EnablePackageInstall:
29     default: 'false'
30     description: Set to true to enable package installation via Puppet
31     type: boolean
32   ServiceNetMap:
33     default: {}
34     description: Mapping of service_name -> network name. Typically set
35                  via parameter_defaults in the resource registry.
36     type: json
37   TimeZone:
38     default: 'UTC'
39     description: The timezone to be set on Ceph nodes.
40     type: string
41   UpdateIdentifier:
42     default: ''
43     type: string
44     description: >
45       Setting to a previously unused value during stack-update will trigger
46       package update on all nodes
47   Hostname:
48     type: string
49     default: '' # Defaults to Heat created hostname
50   HostnameMap:
51     type: json
52     default: {}
53     description: Optional mapping to override hostnames
54   ExtraConfig:
55     default: {}
56     description: |
57       Additional hiera configuration to inject into the cluster. Note
58       that CephStorageExtraConfig takes precedence over ExtraConfig.
59     type: json
60   CephStorageExtraConfig:
61     default: {}
62     description: |
63       Role specific additional hiera configuration to inject into the cluster.
64     type: json
65   CephStorageIPs:
66     default: {}
67     type: json
68   NetworkDeploymentActions:
69     type: comma_delimited_list
70     description: >
71       Heat action when to apply network configuration changes
72     default: ['CREATE']
73   SoftwareConfigTransport:
74     default: POLL_SERVER_CFN
75     description: |
76       How the server should receive the metadata required for software configuration.
77     type: string
78     constraints:
79     - allowed_values: [POLL_SERVER_CFN, POLL_SERVER_HEAT, POLL_TEMP_URL, ZAQAR_MESSAGE]
80   CloudDomain:
81     default: ''
82     type: string
83     description: >
84       The DNS domain used for the hosts. This should match the dhcp_domain
85       configured in the Undercloud neutron. Defaults to localdomain.
86   ServerMetadata:
87     default: {}
88     description: >
89       Extra properties or metadata passed to Nova for the created nodes in
90       the overcloud. It's accessible via the Nova metadata API.
91     type: json
92   SchedulerHints:
93     type: json
94     description: Optional scheduler hints to pass to nova
95     default: {}
96   NodeIndex:
97     type: number
98     default: 0
99
100 resources:
101   CephStorage:
102     type: OS::Nova::Server
103     properties:
104       image: {get_param: Image}
105       image_update_policy: {get_param: ImageUpdatePolicy}
106       flavor: {get_param: Flavor}
107       key_name: {get_param: KeyName}
108       networks:
109         - network: ctlplane
110       user_data_format: SOFTWARE_CONFIG
111       user_data: {get_resource: UserData}
112       name:
113         str_replace:
114             template: {get_param: Hostname}
115             params: {get_param: HostnameMap}
116       software_config_transport: {get_param: SoftwareConfigTransport}
117       metadata: {get_param: ServerMetadata}
118       scheduler_hints: {get_param: SchedulerHints}
119
120   # Combine the NodeAdminUserData and NodeUserData mime archives
121   UserData:
122     type: OS::Heat::MultipartMime
123     properties:
124       parts:
125       - config: {get_resource: NodeAdminUserData}
126         type: multipart
127       - config: {get_resource: NodeUserData}
128         type: multipart
129
130   # Creates the "heat-admin" user if configured via the environment
131   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
132   NodeAdminUserData:
133     type: OS::TripleO::NodeAdminUserData
134
135   # For optional operator additional userdata
136   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
137   NodeUserData:
138     type: OS::TripleO::NodeUserData
139
140   ExternalPort:
141     type: OS::TripleO::CephStorage::Ports::ExternalPort
142     properties:
143       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
144       IPPool: {get_param: CephStorageIPs}
145       NodeIndex: {get_param: NodeIndex}
146
147   InternalApiPort:
148     type: OS::TripleO::CephStorage::Ports::InternalApiPort
149     properties:
150       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
151       IPPool: {get_param: CephStorageIPs}
152       NodeIndex: {get_param: NodeIndex}
153
154   StoragePort:
155     type: OS::TripleO::CephStorage::Ports::StoragePort
156     properties:
157       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
158       IPPool: {get_param: CephStorageIPs}
159       NodeIndex: {get_param: NodeIndex}
160
161   StorageMgmtPort:
162     type: OS::TripleO::CephStorage::Ports::StorageMgmtPort
163     properties:
164       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
165       IPPool: {get_param: CephStorageIPs}
166       NodeIndex: {get_param: NodeIndex}
167
168   TenantPort:
169     type: OS::TripleO::CephStorage::Ports::TenantPort
170     properties:
171       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
172       IPPool: {get_param: CephStorageIPs}
173       NodeIndex: {get_param: NodeIndex}
174
175   ManagementPort:
176     type: OS::TripleO::CephStorage::Ports::ManagementPort
177     properties:
178       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
179       IPPool: {get_param: CephStorageIPs}
180       NodeIndex: {get_param: NodeIndex}
181
182   NetworkConfig:
183     type: OS::TripleO::CephStorage::Net::SoftwareConfig
184     properties:
185       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
186       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
187       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
188       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
189       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
190       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
191       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
192
193   NetIpMap:
194     type: OS::TripleO::Network::Ports::NetIpMap
195     properties:
196       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
197       ExternalIp: {get_attr: [ExternalPort, ip_address]}
198       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
199       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
200       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
201       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
202       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
203       StorageIp: {get_attr: [StoragePort, ip_address]}
204       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
205       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
206       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
207       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
208       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
209       TenantIp: {get_attr: [TenantPort, ip_address]}
210       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
211       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
212       ManagementIp: {get_attr: [ManagementPort, ip_address]}
213       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
214       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
215
216   NetworkDeployment:
217     type: OS::TripleO::SoftwareDeployment
218     properties:
219       name: NetworkDeployment
220       config: {get_resource: NetworkConfig}
221       server: {get_resource: CephStorage}
222       actions: {get_param: NetworkDeploymentActions}
223
224   CephStorageDeployment:
225     type: OS::Heat::StructuredDeployment
226     depends_on: NetworkDeployment
227     properties:
228       name: CephStorageDeployment
229       config: {get_resource: CephStorageConfig}
230       server: {get_resource: CephStorage}
231       input_values:
232         ntp_servers: {get_param: NtpServer}
233         timezone: {get_param: TimeZone}
234         enable_package_install: {get_param: EnablePackageInstall}
235         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
236         ceph_cluster_network: {get_attr: [NetIpMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephClusterNetwork]}]}
237         ceph_public_network: {get_attr: [NetIpMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephPublicNetwork]}]}
238
239   CephStorageConfig:
240     type: OS::Heat::StructuredConfig
241     properties:
242       group: os-apply-config
243       config:
244         hiera:
245           hierarchy:
246             - '"%{::uuid}"'
247             - heat_config_%{::deploy_config_name}
248             - ceph_extraconfig
249             - extraconfig
250             - ceph_cluster # provided by CephClusterConfig
251             - ceph
252             - '"%{::osfamily}"'
253             - common
254             - network
255           merge_behavior: deeper
256           datafiles:
257             common:
258               raw_data: {get_file: hieradata/common.yaml}
259             network:
260               mapped_data:
261                 net_ip_map: {get_attr: [NetIpMap, net_ip_map]}
262                 net_ip_subnet_map: {get_attr: [NetIpMap, net_ip_subnet_map]}
263                 net_ip_uri_map: {get_attr: [NetIpMap, net_ip_uri_map]}
264             ceph_extraconfig:
265               mapped_data: {get_param: CephStorageExtraConfig}
266             extraconfig:
267               mapped_data: {get_param: ExtraConfig}
268             ceph:
269               raw_data: {get_file: hieradata/ceph.yaml}
270               mapped_data:
271                 ntp::servers: {get_input: ntp_servers}
272                 timezone::timezone: {get_input: timezone}
273                 tripleo::packages::enable_install: {get_input: enable_package_install}
274                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
275                 ceph::profile::params::cluster_network: {get_input: ceph_cluster_network}
276                 ceph::profile::params::public_network: {get_input: ceph_public_network}
277
278   # Resource for site-specific injection of root certificate
279   NodeTLSCAData:
280     depends_on: CephStorageDeployment
281     type: OS::TripleO::NodeTLSCAData
282     properties:
283       server: {get_resource: CephStorage}
284
285   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
286   CephStorageExtraConfigPre:
287     depends_on: CephStorageDeployment
288     type: OS::TripleO::CephStorageExtraConfigPre
289     properties:
290         server: {get_resource: CephStorage}
291
292   # Hook for site-specific additional pre-deployment config,
293   # applying to all nodes, e.g node registration/unregistration
294   NodeExtraConfig:
295     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
296     type: OS::TripleO::NodeExtraConfig
297     properties:
298         server: {get_resource: CephStorage}
299
300   UpdateConfig:
301     type: OS::TripleO::Tasks::PackageUpdate
302
303   UpdateDeployment:
304     type: OS::Heat::SoftwareDeployment
305     properties:
306       config: {get_resource: UpdateConfig}
307       server: {get_resource: CephStorage}
308       input_values:
309         update_identifier:
310           get_param: UpdateIdentifier
311
312 outputs:
313   hosts_entry:
314     value:
315       str_replace:
316         template: |
317           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
318           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
319           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
320           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
321           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
322           TENANTIP TENANTHOST.DOMAIN TENANTHOST
323           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
324         params:
325           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
326           DOMAIN: {get_param: CloudDomain}
327           PRIMARYHOST: {get_attr: [CephStorage, name]}
328           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
329           EXTERNALHOST:
330             list_join:
331             - '.'
332             - - {get_attr: [CephStorage, name]}
333               - external
334           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
335           INTERNAL_APIHOST:
336             list_join:
337             - '.'
338             - - {get_attr: [CephStorage, name]}
339               - internalapi
340           STORAGEIP: {get_attr: [StoragePort, ip_address]}
341           STORAGEHOST:
342             list_join:
343             - '.'
344             - - {get_attr: [CephStorage, name]}
345               - storage
346           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
347           STORAGE_MGMTHOST:
348             list_join:
349             - '.'
350             - - {get_attr: [CephStorage, name]}
351               - storagemgmt
352           TENANTIP: {get_attr: [TenantPort, ip_address]}
353           TENANTHOST:
354             list_join:
355             - '.'
356             - - {get_attr: [CephStorage, name]}
357               - tenant
358           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
359           MANAGEMENTHOST:
360             list_join:
361             - '.'
362             - - {get_attr: [CephStorage, name]}
363               - management
364   nova_server_resource:
365     description: Heat resource handle for the ceph storage server
366     value:
367       {get_resource: CephStorage}
368   external_ip_address:
369     description: IP address of the server in the external network
370     value: {get_attr: [ExternalPort, ip_address]}
371   internal_api_ip_address:
372     description: IP address of the server in the internal_api network
373     value: {get_attr: [InternalApiPort, ip_address]}
374   storage_ip_address:
375     description: IP address of the server in the storage network
376     value: {get_attr: [StoragePort, ip_address]}
377   storage_mgmt_ip_address:
378     description: IP address of the server in the storage_mgmt network
379     value: {get_attr: [StorageMgmtPort, ip_address]}
380   tenant_ip_address:
381     description: IP address of the server in the tenant network
382     value: {get_attr: [TenantPort, ip_address]}
383   management_ip_address:
384     description: IP address of the server in the management network
385     value: {get_attr: [ManagementPort, ip_address]}
386   config_identifier:
387     description: identifier which changes if the node configuration may need re-applying
388     value:
389       list_join:
390       - ','
391       - - {get_attr: [CephStorageDeployment, deploy_stdout]}
392         - {get_attr: [NodeTLSCAData, deploy_stdout]}
393         - {get_attr: [CephStorageExtraConfigPre, deploy_stdout]}
394         - {get_param: UpdateIdentifier}