Merge "Don't have separate protocols/ports for Keystone v3"
[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           datafiles:
260             common:
261               raw_data: {get_file: hieradata/common.yaml}
262             ceph_extraconfig:
263               mapped_data: {get_param: CephStorageExtraConfig}
264             extraconfig:
265               mapped_data: {get_param: ExtraConfig}
266             ceph:
267               raw_data: {get_file: hieradata/ceph.yaml}
268               mapped_data:
269                 ntp::servers: {get_input: ntp_servers}
270                 timezone::timezone: {get_input: timezone}
271                 tripleo::packages::enable_install: {get_input: enable_package_install}
272                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
273                 ceph::profile::params::cluster_network: {get_input: ceph_cluster_network}
274                 ceph::profile::params::public_network: {get_input: ceph_public_network}
275
276   # Resource for site-specific injection of root certificate
277   NodeTLSCAData:
278     depends_on: CephStorageDeployment
279     type: OS::TripleO::NodeTLSCAData
280     properties:
281       server: {get_resource: CephStorage}
282
283   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
284   CephStorageExtraConfigPre:
285     depends_on: CephStorageDeployment
286     type: OS::TripleO::CephStorageExtraConfigPre
287     properties:
288         server: {get_resource: CephStorage}
289
290   # Hook for site-specific additional pre-deployment config,
291   # applying to all nodes, e.g node registration/unregistration
292   NodeExtraConfig:
293     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
294     type: OS::TripleO::NodeExtraConfig
295     properties:
296         server: {get_resource: CephStorage}
297
298   UpdateConfig:
299     type: OS::TripleO::Tasks::PackageUpdate
300
301   UpdateDeployment:
302     type: OS::Heat::SoftwareDeployment
303     properties:
304       config: {get_resource: UpdateConfig}
305       server: {get_resource: CephStorage}
306       input_values:
307         update_identifier:
308           get_param: UpdateIdentifier
309
310 outputs:
311   hosts_entry:
312     value:
313       str_replace:
314         template: |
315           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
316           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
317           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
318           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
319           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
320           TENANTIP TENANTHOST.DOMAIN TENANTHOST
321           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
322         params:
323           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
324           DOMAIN: {get_param: CloudDomain}
325           PRIMARYHOST: {get_attr: [CephStorage, name]}
326           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
327           EXTERNALHOST:
328             list_join:
329             - '.'
330             - - {get_attr: [CephStorage, name]}
331               - external
332           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
333           INTERNAL_APIHOST:
334             list_join:
335             - '.'
336             - - {get_attr: [CephStorage, name]}
337               - internalapi
338           STORAGEIP: {get_attr: [StoragePort, ip_address]}
339           STORAGEHOST:
340             list_join:
341             - '.'
342             - - {get_attr: [CephStorage, name]}
343               - storage
344           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
345           STORAGE_MGMTHOST:
346             list_join:
347             - '.'
348             - - {get_attr: [CephStorage, name]}
349               - storagemgmt
350           TENANTIP: {get_attr: [TenantPort, ip_address]}
351           TENANTHOST:
352             list_join:
353             - '.'
354             - - {get_attr: [CephStorage, name]}
355               - tenant
356           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
357           MANAGEMENTHOST:
358             list_join:
359             - '.'
360             - - {get_attr: [CephStorage, name]}
361               - management
362   nova_server_resource:
363     description: Heat resource handle for the ceph storage server
364     value:
365       {get_resource: CephStorage}
366   external_ip_address:
367     description: IP address of the server in the external network
368     value: {get_attr: [ExternalPort, ip_address]}
369   internal_api_ip_address:
370     description: IP address of the server in the internal_api network
371     value: {get_attr: [InternalApiPort, ip_address]}
372   storage_ip_address:
373     description: IP address of the server in the storage network
374     value: {get_attr: [StoragePort, ip_address]}
375   storage_mgmt_ip_address:
376     description: IP address of the server in the storage_mgmt network
377     value: {get_attr: [StorageMgmtPort, ip_address]}
378   tenant_ip_address:
379     description: IP address of the server in the tenant network
380     value: {get_attr: [TenantPort, ip_address]}
381   management_ip_address:
382     description: IP address of the server in the management network
383     value: {get_attr: [ManagementPort, ip_address]}
384   config_identifier:
385     description: identifier which changes if the node configuration may need re-applying
386     value:
387       list_join:
388       - ','
389       - - {get_attr: [CephStorageDeployment, deploy_stdout]}
390         - {get_attr: [NodeTLSCAData, deploy_stdout]}
391         - {get_attr: [CephStorageExtraConfigPre, deploy_stdout]}
392         - {get_param: UpdateIdentifier}