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