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