Merge "Fix distinguishing between stack-create and stack-update"
[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       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
199       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
200       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
201       StorageIp: {get_attr: [StoragePort, ip_address]}
202       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
203       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
204       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
205       TenantIp: {get_attr: [TenantPort, ip_address]}
206       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
207       ManagementIp: {get_attr: [ManagementPort, ip_address]}
208       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
209
210   NetIpSubnetMap:
211     type: OS::TripleO::Network::Ports::NetIpSubnetMap
212     properties:
213       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
214       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
215       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
216       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
217       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
218       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
219       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
220
221   NetworkDeployment:
222     type: OS::TripleO::SoftwareDeployment
223     properties:
224       name: NetworkDeployment
225       config: {get_resource: NetworkConfig}
226       server: {get_resource: CephStorage}
227       actions: {get_param: NetworkDeploymentActions}
228
229   CephStorageDeployment:
230     type: OS::Heat::StructuredDeployment
231     depends_on: NetworkDeployment
232     properties:
233       name: CephStorageDeployment
234       config: {get_resource: CephStorageConfig}
235       server: {get_resource: CephStorage}
236       input_values:
237         ntp_servers: {get_param: NtpServer}
238         timezone: {get_param: TimeZone}
239         enable_package_install: {get_param: EnablePackageInstall}
240         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
241         ceph_cluster_network: {get_attr: [NetIpSubnetMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephClusterNetwork]}]}
242         ceph_public_network: {get_attr: [NetIpSubnetMap, net_ip_subnet_map, {get_param: [ServiceNetMap, CephPublicNetwork]}]}
243
244   CephStorageConfig:
245     type: OS::Heat::StructuredConfig
246     properties:
247       group: os-apply-config
248       config:
249         hiera:
250           hierarchy:
251             - '"%{::uuid}"'
252             - heat_config_%{::deploy_config_name}
253             - ceph_extraconfig
254             - extraconfig
255             - ceph_cluster # provided by CephClusterConfig
256             - ceph
257             - '"%{::osfamily}"'
258             - common
259           merge_behavior: deeper
260           datafiles:
261             common:
262               raw_data: {get_file: hieradata/common.yaml}
263             ceph_extraconfig:
264               mapped_data: {get_param: CephStorageExtraConfig}
265             extraconfig:
266               mapped_data: {get_param: ExtraConfig}
267             ceph:
268               raw_data: {get_file: hieradata/ceph.yaml}
269               mapped_data:
270                 ntp::servers: {get_input: ntp_servers}
271                 timezone::timezone: {get_input: timezone}
272                 tripleo::packages::enable_install: {get_input: enable_package_install}
273                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
274                 ceph::profile::params::cluster_network: {get_input: ceph_cluster_network}
275                 ceph::profile::params::public_network: {get_input: ceph_public_network}
276
277   # Resource for site-specific injection of root certificate
278   NodeTLSCAData:
279     depends_on: CephStorageDeployment
280     type: OS::TripleO::NodeTLSCAData
281     properties:
282       server: {get_resource: CephStorage}
283
284   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
285   CephStorageExtraConfigPre:
286     depends_on: CephStorageDeployment
287     type: OS::TripleO::CephStorageExtraConfigPre
288     properties:
289         server: {get_resource: CephStorage}
290
291   # Hook for site-specific additional pre-deployment config,
292   # applying to all nodes, e.g node registration/unregistration
293   NodeExtraConfig:
294     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
295     type: OS::TripleO::NodeExtraConfig
296     properties:
297         server: {get_resource: CephStorage}
298
299   UpdateConfig:
300     type: OS::TripleO::Tasks::PackageUpdate
301
302   UpdateDeployment:
303     type: OS::Heat::SoftwareDeployment
304     properties:
305       config: {get_resource: UpdateConfig}
306       server: {get_resource: CephStorage}
307       input_values:
308         update_identifier:
309           get_param: UpdateIdentifier
310
311 outputs:
312   hosts_entry:
313     value:
314       str_replace:
315         template: |
316           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
317           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
318           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
319           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
320           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
321           TENANTIP TENANTHOST.DOMAIN TENANTHOST
322           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
323         params:
324           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
325           DOMAIN: {get_param: CloudDomain}
326           PRIMARYHOST: {get_attr: [CephStorage, name]}
327           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
328           EXTERNALHOST:
329             list_join:
330             - '.'
331             - - {get_attr: [CephStorage, name]}
332               - external
333           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
334           INTERNAL_APIHOST:
335             list_join:
336             - '.'
337             - - {get_attr: [CephStorage, name]}
338               - internalapi
339           STORAGEIP: {get_attr: [StoragePort, ip_address]}
340           STORAGEHOST:
341             list_join:
342             - '.'
343             - - {get_attr: [CephStorage, name]}
344               - storage
345           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
346           STORAGE_MGMTHOST:
347             list_join:
348             - '.'
349             - - {get_attr: [CephStorage, name]}
350               - storagemgmt
351           TENANTIP: {get_attr: [TenantPort, ip_address]}
352           TENANTHOST:
353             list_join:
354             - '.'
355             - - {get_attr: [CephStorage, name]}
356               - tenant
357           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
358           MANAGEMENTHOST:
359             list_join:
360             - '.'
361             - - {get_attr: [CephStorage, name]}
362               - management
363   nova_server_resource:
364     description: Heat resource handle for the ceph storage server
365     value:
366       {get_resource: CephStorage}
367   external_ip_address:
368     description: IP address of the server in the external network
369     value: {get_attr: [ExternalPort, ip_address]}
370   internal_api_ip_address:
371     description: IP address of the server in the internal_api network
372     value: {get_attr: [InternalApiPort, ip_address]}
373   storage_ip_address:
374     description: IP address of the server in the storage network
375     value: {get_attr: [StoragePort, ip_address]}
376   storage_mgmt_ip_address:
377     description: IP address of the server in the storage_mgmt network
378     value: {get_attr: [StorageMgmtPort, ip_address]}
379   tenant_ip_address:
380     description: IP address of the server in the tenant network
381     value: {get_attr: [TenantPort, ip_address]}
382   management_ip_address:
383     description: IP address of the server in the management network
384     value: {get_attr: [ManagementPort, ip_address]}
385   config_identifier:
386     description: identifier which changes if the node configuration may need re-applying
387     value:
388       list_join:
389       - ','
390       - - {get_attr: [CephStorageDeployment, deploy_stdout]}
391         - {get_attr: [NodeTLSCAData, deploy_stdout]}
392         - {get_attr: [CephStorageExtraConfigPre, deploy_stdout]}
393         - {get_param: UpdateIdentifier}