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