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