Merge "Composable Neutron Plumgrid plugin"
[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   ServiceConfigSettings:
100     type: json
101     default: {}
102
103 resources:
104   CephStorage:
105     type: OS::Nova::Server
106     properties:
107       image: {get_param: Image}
108       image_update_policy: {get_param: ImageUpdatePolicy}
109       flavor: {get_param: Flavor}
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: SchedulerHints}
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::CephStorage::Ports::ExternalPort
145     properties:
146       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
147       IPPool: {get_param: CephStorageIPs}
148       NodeIndex: {get_param: NodeIndex}
149
150   InternalApiPort:
151     type: OS::TripleO::CephStorage::Ports::InternalApiPort
152     properties:
153       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
154       IPPool: {get_param: CephStorageIPs}
155       NodeIndex: {get_param: NodeIndex}
156
157   StoragePort:
158     type: OS::TripleO::CephStorage::Ports::StoragePort
159     properties:
160       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
161       IPPool: {get_param: CephStorageIPs}
162       NodeIndex: {get_param: NodeIndex}
163
164   StorageMgmtPort:
165     type: OS::TripleO::CephStorage::Ports::StorageMgmtPort
166     properties:
167       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
168       IPPool: {get_param: CephStorageIPs}
169       NodeIndex: {get_param: NodeIndex}
170
171   TenantPort:
172     type: OS::TripleO::CephStorage::Ports::TenantPort
173     properties:
174       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
175       IPPool: {get_param: CephStorageIPs}
176       NodeIndex: {get_param: NodeIndex}
177
178   ManagementPort:
179     type: OS::TripleO::CephStorage::Ports::ManagementPort
180     properties:
181       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
182       IPPool: {get_param: CephStorageIPs}
183       NodeIndex: {get_param: NodeIndex}
184
185   NetworkConfig:
186     type: OS::TripleO::CephStorage::Net::SoftwareConfig
187     properties:
188       ControlPlaneIp: {get_attr: [CephStorage, 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: [CephStorage, 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: CephStorage}
225       actions: {get_param: NetworkDeploymentActions}
226
227   CephStorageDeployment:
228     type: OS::Heat::StructuredDeployment
229     depends_on: NetworkDeployment
230     properties:
231       name: CephStorageDeployment
232       config: {get_resource: CephStorageConfig}
233       server: {get_resource: CephStorage}
234       input_values:
235         ntp_servers: {get_param: NtpServer}
236         timezone: {get_param: TimeZone}
237         enable_package_install: {get_param: EnablePackageInstall}
238         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
239         ceph_cluster_network: {get_attr: [NetIpMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephClusterNetwork]}]}
240         ceph_public_network: {get_attr: [NetIpMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephPublicNetwork]}]}
241
242   CephStorageConfig:
243     type: OS::Heat::StructuredConfig
244     properties:
245       group: os-apply-config
246       config:
247         hiera:
248           hierarchy:
249             - '"%{::uuid}"'
250             - heat_config_%{::deploy_config_name}
251             - ceph_extraconfig
252             - extraconfig
253             - service_configs
254             - ceph_cluster # provided by CephClusterConfig
255             - ceph
256             - '"%{::osfamily}"'
257             - common
258             - network
259           merge_behavior: deeper
260           datafiles:
261             service_configs:
262               mapped_data: {get_param: ServiceConfigSettings}
263             common:
264               raw_data: {get_file: hieradata/common.yaml}
265             network:
266               mapped_data:
267                 net_ip_map: {get_attr: [NetIpMap, net_ip_map]}
268                 net_ip_subnet_map: {get_attr: [NetIpMap, net_ip_subnet_map]}
269                 net_ip_uri_map: {get_attr: [NetIpMap, net_ip_uri_map]}
270             ceph_extraconfig:
271               mapped_data: {get_param: CephStorageExtraConfig}
272             extraconfig:
273               mapped_data: {get_param: ExtraConfig}
274             ceph:
275               raw_data: {get_file: hieradata/ceph.yaml}
276               mapped_data:
277                 ntp::servers: {get_input: ntp_servers}
278                 timezone::timezone: {get_input: timezone}
279                 tripleo::packages::enable_install: {get_input: enable_package_install}
280                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
281                 ceph::profile::params::cluster_network: {get_input: ceph_cluster_network}
282                 ceph::profile::params::public_network: {get_input: ceph_public_network}
283
284   # Resource for site-specific injection of root certificate
285   NodeTLSCAData:
286     depends_on: CephStorageDeployment
287     type: OS::TripleO::NodeTLSCAData
288     properties:
289       server: {get_resource: CephStorage}
290
291   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
292   CephStorageExtraConfigPre:
293     depends_on: CephStorageDeployment
294     type: OS::TripleO::CephStorageExtraConfigPre
295     properties:
296         server: {get_resource: CephStorage}
297
298   # Hook for site-specific additional pre-deployment config,
299   # applying to all nodes, e.g node registration/unregistration
300   NodeExtraConfig:
301     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
302     type: OS::TripleO::NodeExtraConfig
303     properties:
304         server: {get_resource: CephStorage}
305
306   UpdateConfig:
307     type: OS::TripleO::Tasks::PackageUpdate
308
309   UpdateDeployment:
310     type: OS::Heat::SoftwareDeployment
311     properties:
312       config: {get_resource: UpdateConfig}
313       server: {get_resource: CephStorage}
314       input_values:
315         update_identifier:
316           get_param: UpdateIdentifier
317
318 outputs:
319   hosts_entry:
320     value:
321       str_replace:
322         template: |
323           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
324           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
325           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
326           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
327           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
328           TENANTIP TENANTHOST.DOMAIN TENANTHOST
329           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
330         params:
331           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
332           DOMAIN: {get_param: CloudDomain}
333           PRIMARYHOST: {get_attr: [CephStorage, name]}
334           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
335           EXTERNALHOST:
336             list_join:
337             - '.'
338             - - {get_attr: [CephStorage, name]}
339               - external
340           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
341           INTERNAL_APIHOST:
342             list_join:
343             - '.'
344             - - {get_attr: [CephStorage, name]}
345               - internalapi
346           STORAGEIP: {get_attr: [StoragePort, ip_address]}
347           STORAGEHOST:
348             list_join:
349             - '.'
350             - - {get_attr: [CephStorage, name]}
351               - storage
352           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
353           STORAGE_MGMTHOST:
354             list_join:
355             - '.'
356             - - {get_attr: [CephStorage, name]}
357               - storagemgmt
358           TENANTIP: {get_attr: [TenantPort, ip_address]}
359           TENANTHOST:
360             list_join:
361             - '.'
362             - - {get_attr: [CephStorage, name]}
363               - tenant
364           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
365           MANAGEMENTHOST:
366             list_join:
367             - '.'
368             - - {get_attr: [CephStorage, name]}
369               - management
370   nova_server_resource:
371     description: Heat resource handle for the ceph storage server
372     value:
373       {get_resource: CephStorage}
374   external_ip_address:
375     description: IP address of the server in the external network
376     value: {get_attr: [ExternalPort, ip_address]}
377   internal_api_ip_address:
378     description: IP address of the server in the internal_api network
379     value: {get_attr: [InternalApiPort, ip_address]}
380   storage_ip_address:
381     description: IP address of the server in the storage network
382     value: {get_attr: [StoragePort, ip_address]}
383   storage_mgmt_ip_address:
384     description: IP address of the server in the storage_mgmt network
385     value: {get_attr: [StorageMgmtPort, ip_address]}
386   tenant_ip_address:
387     description: IP address of the server in the tenant network
388     value: {get_attr: [TenantPort, ip_address]}
389   management_ip_address:
390     description: IP address of the server in the management network
391     value: {get_attr: [ManagementPort, ip_address]}
392   config_identifier:
393     description: identifier which changes if the node configuration may need re-applying
394     value:
395       list_join:
396       - ','
397       - - {get_attr: [CephStorageDeployment, deploy_stdout]}
398         - {get_attr: [NodeTLSCAData, deploy_stdout]}
399         - {get_attr: [CephStorageExtraConfigPre, deploy_stdout]}
400         - {get_param: UpdateIdentifier}