Merge "Combine parameter_default fields"
[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   ConfigCommand:
95     type: string
96     description: Command which will be run whenever configuration data changes
97     default: os-refresh-config --timeout 14400
98
99 resources:
100   CephStorage:
101     type: OS::Nova::Server
102     metadata:
103       os-collect-config:
104         command: {get_param: ConfigCommand}
105     properties:
106       image: {get_param: Image}
107       image_update_policy: {get_param: ImageUpdatePolicy}
108       flavor: {get_param: Flavor}
109       key_name: {get_param: KeyName}
110       networks:
111         - network: ctlplane
112       user_data_format: SOFTWARE_CONFIG
113       user_data: {get_resource: UserData}
114       name:
115         str_replace:
116             template: {get_param: Hostname}
117             params: {get_param: HostnameMap}
118       software_config_transport: {get_param: SoftwareConfigTransport}
119       metadata: {get_param: ServerMetadata}
120       scheduler_hints: {get_param: SchedulerHints}
121
122   # Combine the NodeAdminUserData and NodeUserData mime archives
123   UserData:
124     type: OS::Heat::MultipartMime
125     properties:
126       parts:
127       - config: {get_resource: NodeAdminUserData}
128         type: multipart
129       - config: {get_resource: NodeUserData}
130         type: multipart
131
132   # Creates the "heat-admin" user if configured via the environment
133   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
134   NodeAdminUserData:
135     type: OS::TripleO::NodeAdminUserData
136
137   # For optional operator additional userdata
138   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
139   NodeUserData:
140     type: OS::TripleO::NodeUserData
141
142   ExternalPort:
143     type: OS::TripleO::CephStorage::Ports::ExternalPort
144     properties:
145       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
146       IPPool: {get_param: CephStorageIPs}
147       NodeIndex: {get_param: NodeIndex}
148
149   InternalApiPort:
150     type: OS::TripleO::CephStorage::Ports::InternalApiPort
151     properties:
152       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
153       IPPool: {get_param: CephStorageIPs}
154       NodeIndex: {get_param: NodeIndex}
155
156   StoragePort:
157     type: OS::TripleO::CephStorage::Ports::StoragePort
158     properties:
159       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
160       IPPool: {get_param: CephStorageIPs}
161       NodeIndex: {get_param: NodeIndex}
162
163   StorageMgmtPort:
164     type: OS::TripleO::CephStorage::Ports::StorageMgmtPort
165     properties:
166       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
167       IPPool: {get_param: CephStorageIPs}
168       NodeIndex: {get_param: NodeIndex}
169
170   TenantPort:
171     type: OS::TripleO::CephStorage::Ports::TenantPort
172     properties:
173       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
174       IPPool: {get_param: CephStorageIPs}
175       NodeIndex: {get_param: NodeIndex}
176
177   ManagementPort:
178     type: OS::TripleO::CephStorage::Ports::ManagementPort
179     properties:
180       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
181       IPPool: {get_param: CephStorageIPs}
182       NodeIndex: {get_param: NodeIndex}
183
184   NetworkConfig:
185     type: OS::TripleO::CephStorage::Net::SoftwareConfig
186     properties:
187       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
188       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
189       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
190       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
191       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
192       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
193       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
194
195   NetIpMap:
196     type: OS::TripleO::Network::Ports::NetIpMap
197     properties:
198       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
199       ExternalIp: {get_attr: [ExternalPort, ip_address]}
200       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
201       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
202       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
203       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
204       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
205       StorageIp: {get_attr: [StoragePort, ip_address]}
206       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
207       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
208       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
209       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
210       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
211       TenantIp: {get_attr: [TenantPort, ip_address]}
212       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
213       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
214       ManagementIp: {get_attr: [ManagementPort, ip_address]}
215       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
216       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
217
218   NetworkDeployment:
219     type: OS::TripleO::SoftwareDeployment
220     properties:
221       name: NetworkDeployment
222       config: {get_resource: NetworkConfig}
223       server: {get_resource: CephStorage}
224       actions: {get_param: NetworkDeploymentActions}
225
226   CephStorageDeployment:
227     type: OS::Heat::StructuredDeployment
228     depends_on: NetworkDeployment
229     properties:
230       name: CephStorageDeployment
231       config: {get_resource: CephStorageConfig}
232       server: {get_resource: CephStorage}
233       input_values:
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             - service_configs
251             - ceph_cluster # provided by CephClusterConfig
252             - ceph
253             - all_nodes # provided by allNodesConfig
254             - '"%{::osfamily}"'
255             - common
256             - network
257           merge_behavior: deeper
258           datafiles:
259             service_configs:
260               mapped_data: {get_param: ServiceConfigSettings}
261             common:
262               raw_data: {get_file: hieradata/common.yaml}
263             network:
264               mapped_data:
265                 net_ip_map: {get_attr: [NetIpMap, net_ip_map]}
266                 net_ip_subnet_map: {get_attr: [NetIpMap, net_ip_subnet_map]}
267                 net_ip_uri_map: {get_attr: [NetIpMap, net_ip_uri_map]}
268             ceph_extraconfig:
269               mapped_data: {get_param: CephStorageExtraConfig}
270             extraconfig:
271               mapped_data: {get_param: ExtraConfig}
272             ceph:
273               raw_data: {get_file: hieradata/ceph.yaml}
274               mapped_data:
275                 tripleo::packages::enable_install: {get_input: enable_package_install}
276                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
277                 ceph::profile::params::cluster_network: {get_input: ceph_cluster_network}
278                 ceph::profile::params::public_network: {get_input: ceph_public_network}
279
280   # Resource for site-specific injection of root certificate
281   NodeTLSCAData:
282     depends_on: CephStorageDeployment
283     type: OS::TripleO::NodeTLSCAData
284     properties:
285       server: {get_resource: CephStorage}
286
287   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
288   CephStorageExtraConfigPre:
289     depends_on: CephStorageDeployment
290     type: OS::TripleO::CephStorageExtraConfigPre
291     properties:
292         server: {get_resource: CephStorage}
293
294   # Hook for site-specific additional pre-deployment config,
295   # applying to all nodes, e.g node registration/unregistration
296   NodeExtraConfig:
297     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
298     type: OS::TripleO::NodeExtraConfig
299     properties:
300         server: {get_resource: CephStorage}
301
302   UpdateConfig:
303     type: OS::TripleO::Tasks::PackageUpdate
304
305   UpdateDeployment:
306     type: OS::Heat::SoftwareDeployment
307     properties:
308       config: {get_resource: UpdateConfig}
309       server: {get_resource: CephStorage}
310       input_values:
311         update_identifier:
312           get_param: UpdateIdentifier
313
314 outputs:
315   hosts_entry:
316     value:
317       str_replace:
318         template: |
319           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
320           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
321           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
322           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
323           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
324           TENANTIP TENANTHOST.DOMAIN TENANTHOST
325           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
326         params:
327           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
328           DOMAIN: {get_param: CloudDomain}
329           PRIMARYHOST: {get_attr: [CephStorage, name]}
330           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
331           EXTERNALHOST:
332             list_join:
333             - '.'
334             - - {get_attr: [CephStorage, name]}
335               - external
336           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
337           INTERNAL_APIHOST:
338             list_join:
339             - '.'
340             - - {get_attr: [CephStorage, name]}
341               - internalapi
342           STORAGEIP: {get_attr: [StoragePort, ip_address]}
343           STORAGEHOST:
344             list_join:
345             - '.'
346             - - {get_attr: [CephStorage, name]}
347               - storage
348           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
349           STORAGE_MGMTHOST:
350             list_join:
351             - '.'
352             - - {get_attr: [CephStorage, name]}
353               - storagemgmt
354           TENANTIP: {get_attr: [TenantPort, ip_address]}
355           TENANTHOST:
356             list_join:
357             - '.'
358             - - {get_attr: [CephStorage, name]}
359               - tenant
360           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
361           MANAGEMENTHOST:
362             list_join:
363             - '.'
364             - - {get_attr: [CephStorage, name]}
365               - management
366   nova_server_resource:
367     description: Heat resource handle for the ceph storage server
368     value:
369       {get_resource: CephStorage}
370   external_ip_address:
371     description: IP address of the server in the external network
372     value: {get_attr: [ExternalPort, ip_address]}
373   internal_api_ip_address:
374     description: IP address of the server in the internal_api network
375     value: {get_attr: [InternalApiPort, ip_address]}
376   storage_ip_address:
377     description: IP address of the server in the storage network
378     value: {get_attr: [StoragePort, ip_address]}
379   storage_mgmt_ip_address:
380     description: IP address of the server in the storage_mgmt network
381     value: {get_attr: [StorageMgmtPort, ip_address]}
382   tenant_ip_address:
383     description: IP address of the server in the tenant network
384     value: {get_attr: [TenantPort, ip_address]}
385   management_ip_address:
386     description: IP address of the server in the management network
387     value: {get_attr: [ManagementPort, ip_address]}