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