Merge "Add Heat's Cfn and Cloudwatch networks to ServiceNetMap"
[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   MonitoringSubscriptions:
94     type: comma_delimited_list
95     default: []
96   ConfigCommand:
97     type: string
98     description: Command which will be run whenever configuration data changes
99     default: os-refresh-config --timeout 14400
100
101 resources:
102   CephStorage:
103     type: OS::TripleO::Server
104     metadata:
105       os-collect-config:
106         command: {get_param: ConfigCommand}
107     properties:
108       image: {get_param: CephStorageImage}
109       image_update_policy: {get_param: ImageUpdatePolicy}
110       flavor: {get_param: OvercloudCephStorageFlavor}
111       key_name: {get_param: KeyName}
112       networks:
113         - network: ctlplane
114       user_data_format: SOFTWARE_CONFIG
115       user_data: {get_resource: UserData}
116       name:
117         str_replace:
118             template: {get_param: Hostname}
119             params: {get_param: HostnameMap}
120       software_config_transport: {get_param: SoftwareConfigTransport}
121       metadata: {get_param: ServerMetadata}
122       scheduler_hints: {get_param: CephStorageSchedulerHints}
123
124   # Combine the NodeAdminUserData and NodeUserData mime archives
125   UserData:
126     type: OS::Heat::MultipartMime
127     properties:
128       parts:
129       - config: {get_resource: NodeAdminUserData}
130         type: multipart
131       - config: {get_resource: NodeUserData}
132         type: multipart
133
134   # Creates the "heat-admin" user if configured via the environment
135   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
136   NodeAdminUserData:
137     type: OS::TripleO::NodeAdminUserData
138
139   # For optional operator additional userdata
140   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
141   NodeUserData:
142     type: OS::TripleO::NodeUserData
143
144   ExternalPort:
145     type: OS::TripleO::CephStorage::Ports::ExternalPort
146     properties:
147       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
148       IPPool: {get_param: CephStorageIPs}
149       NodeIndex: {get_param: NodeIndex}
150
151   InternalApiPort:
152     type: OS::TripleO::CephStorage::Ports::InternalApiPort
153     properties:
154       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
155       IPPool: {get_param: CephStorageIPs}
156       NodeIndex: {get_param: NodeIndex}
157
158   StoragePort:
159     type: OS::TripleO::CephStorage::Ports::StoragePort
160     properties:
161       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
162       IPPool: {get_param: CephStorageIPs}
163       NodeIndex: {get_param: NodeIndex}
164
165   StorageMgmtPort:
166     type: OS::TripleO::CephStorage::Ports::StorageMgmtPort
167     properties:
168       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
169       IPPool: {get_param: CephStorageIPs}
170       NodeIndex: {get_param: NodeIndex}
171
172   TenantPort:
173     type: OS::TripleO::CephStorage::Ports::TenantPort
174     properties:
175       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
176       IPPool: {get_param: CephStorageIPs}
177       NodeIndex: {get_param: NodeIndex}
178
179   ManagementPort:
180     type: OS::TripleO::CephStorage::Ports::ManagementPort
181     properties:
182       ControlPlaneIP: {get_attr: [CephStorage, networks, ctlplane, 0]}
183       IPPool: {get_param: CephStorageIPs}
184       NodeIndex: {get_param: NodeIndex}
185
186   NetworkConfig:
187     type: OS::TripleO::CephStorage::Net::SoftwareConfig
188     properties:
189       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
190       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
191       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
192       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
193       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
194       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
195       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
196
197   NetIpMap:
198     type: OS::TripleO::Network::Ports::NetIpMap
199     properties:
200       ControlPlaneIp: {get_attr: [CephStorage, networks, ctlplane, 0]}
201       ExternalIp: {get_attr: [ExternalPort, ip_address]}
202       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
203       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
204       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
205       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
206       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
207       StorageIp: {get_attr: [StoragePort, ip_address]}
208       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
209       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
210       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
211       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
212       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
213       TenantIp: {get_attr: [TenantPort, ip_address]}
214       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
215       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
216       ManagementIp: {get_attr: [ManagementPort, ip_address]}
217       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
218       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
219
220   NetworkDeployment:
221     type: OS::TripleO::SoftwareDeployment
222     properties:
223       name: NetworkDeployment
224       config: {get_resource: NetworkConfig}
225       server: {get_resource: CephStorage}
226       actions: {get_param: NetworkDeploymentActions}
227
228   CephStorageDeployment:
229     type: OS::Heat::StructuredDeployment
230     depends_on: NetworkDeployment
231     properties:
232       name: CephStorageDeployment
233       config: {get_resource: CephStorageConfig}
234       server: {get_resource: CephStorage}
235       input_values:
236         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
237
238   CephStorageConfig:
239     type: OS::Heat::StructuredConfig
240     properties:
241       group: os-apply-config
242       config:
243         hiera:
244           hierarchy:
245             - '"%{::uuid}"'
246             - heat_config_%{::deploy_config_name}
247             - ceph_extraconfig
248             - extraconfig
249             - service_names
250             - service_configs
251             - bootstrap_node # provided by allNodesConfig
252             - all_nodes # provided by allNodesConfig
253             - vip_data # provided by allNodesConfig
254             - '"%{::osfamily}"'
255           merge_behavior: deeper
256           datafiles:
257             service_names:
258               mapped_data:
259                 service_names: {get_param: ServiceNames}
260                 sensu::subscriptions: {get_param: MonitoringSubscriptions}
261             service_configs:
262               mapped_data:
263                 map_replace:
264                   - {get_param: ServiceConfigSettings}
265                   - values: {get_attr: [NetIpMap, net_ip_map]}
266             ceph_extraconfig:
267               mapped_data: {get_param: CephStorageExtraConfig}
268             extraconfig:
269               mapped_data: {get_param: ExtraConfig}
270             ceph:
271               mapped_data:
272                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
273
274   # Resource for site-specific injection of root certificate
275   NodeTLSCAData:
276     depends_on: CephStorageDeployment
277     type: OS::TripleO::NodeTLSCAData
278     properties:
279       server: {get_resource: CephStorage}
280
281   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
282   CephStorageExtraConfigPre:
283     depends_on: CephStorageDeployment
284     type: OS::TripleO::CephStorageExtraConfigPre
285     properties:
286         server: {get_resource: CephStorage}
287
288   # Hook for site-specific additional pre-deployment config,
289   # applying to all nodes, e.g node registration/unregistration
290   NodeExtraConfig:
291     depends_on: [CephStorageExtraConfigPre, NodeTLSCAData]
292     type: OS::TripleO::NodeExtraConfig
293     properties:
294         server: {get_resource: CephStorage}
295
296   UpdateConfig:
297     type: OS::TripleO::Tasks::PackageUpdate
298
299   UpdateDeployment:
300     type: OS::Heat::SoftwareDeployment
301     properties:
302       config: {get_resource: UpdateConfig}
303       server: {get_resource: CephStorage}
304       input_values:
305         update_identifier:
306           get_param: UpdateIdentifier
307
308 outputs:
309   ip_address:
310     description: IP address of the server in the ctlplane network
311     value: {get_attr: [CephStorage, networks, ctlplane, 0]}
312   hostname:
313     description: Hostname of the server
314     value: {get_attr: [CephStorage, name]}
315   hosts_entry:
316     value:
317       str_replace:
318         template: |
319           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
320           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
321           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
322           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
323           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
324           TENANTIP TENANTHOST.DOMAIN TENANTHOST
325           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
326         params:
327           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, CephStorageHostnameResolveNetwork]}]}
328           DOMAIN: {get_param: CloudDomain}
329           PRIMARYHOST: {get_attr: [CephStorage, name]}
330           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
331           EXTERNALHOST:
332             list_join:
333             - '.'
334             - - {get_attr: [CephStorage, name]}
335               - external
336           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
337           INTERNAL_APIHOST:
338             list_join:
339             - '.'
340             - - {get_attr: [CephStorage, name]}
341               - internalapi
342           STORAGEIP: {get_attr: [StoragePort, ip_address]}
343           STORAGEHOST:
344             list_join:
345             - '.'
346             - - {get_attr: [CephStorage, name]}
347               - storage
348           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
349           STORAGE_MGMTHOST:
350             list_join:
351             - '.'
352             - - {get_attr: [CephStorage, name]}
353               - storagemgmt
354           TENANTIP: {get_attr: [TenantPort, ip_address]}
355           TENANTHOST:
356             list_join:
357             - '.'
358             - - {get_attr: [CephStorage, name]}
359               - tenant
360           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
361           MANAGEMENTHOST:
362             list_join:
363             - '.'
364             - - {get_attr: [CephStorage, name]}
365               - management
366   nova_server_resource:
367     description: Heat resource handle for the ceph storage server
368     value:
369       {get_resource: CephStorage}
370   external_ip_address:
371     description: IP address of the server in the external network
372     value: {get_attr: [ExternalPort, ip_address]}
373   internal_api_ip_address:
374     description: IP address of the server in the internal_api network
375     value: {get_attr: [InternalApiPort, ip_address]}
376   storage_ip_address:
377     description: IP address of the server in the storage network
378     value: {get_attr: [StoragePort, ip_address]}
379   storage_mgmt_ip_address:
380     description: IP address of the server in the storage_mgmt network
381     value: {get_attr: [StorageMgmtPort, ip_address]}
382   tenant_ip_address:
383     description: IP address of the server in the tenant network
384     value: {get_attr: [TenantPort, ip_address]}
385   management_ip_address:
386     description: IP address of the server in the management network
387     value: {get_attr: [ManagementPort, ip_address]}