Merge "Add cinder-backup service as role"
[apex-tripleo-heat-templates.git] / puppet / compute.yaml
1 heat_template_version: 2016-10-14
2
3 description: >
4   OpenStack hypervisor node configured via Puppet.
5
6 parameters:
7   ExtraConfig:
8     default: {}
9     description: |
10       Additional hiera configuration to inject into the cluster. Note
11       that NovaComputeExtraConfig takes precedence over ExtraConfig.
12     type: json
13   OvercloudComputeFlavor:
14     description: Flavor for the nova compute node
15     default: baremetal
16     type: string
17     constraints:
18       - custom_constraint: nova.flavor
19   NovaImage:
20     type: string
21     default: overcloud-full
22     constraints:
23       - custom_constraint: glance.image
24   ImageUpdatePolicy:
25     default: 'REBUILD_PRESERVE_EPHEMERAL'
26     description: What policy to use when reconstructing instances. REBUILD for rebuilds, REBUILD_PRESERVE_EPHEMERAL to preserve /mnt.
27     type: string
28   KeyName:
29     description: Name of an existing Nova key pair to enable SSH access to the instances
30     type: string
31     default: default
32     constraints:
33       - custom_constraint: nova.keypair
34   NeutronPhysicalBridge:
35     default: 'br-ex'
36     description: An OVS bridge to create for accessing external networks.
37     type: string
38   NeutronPublicInterface:
39     default: nic1
40     description: A port to add to the NeutronPhysicalBridge.
41     type: string
42   NodeIndex:
43     type: number
44     default: 0
45   NovaApiHost:
46     type: string
47     default: ''  # Has to be here because of the ignored empty value bug
48   NovaComputeExtraConfig:
49     default: {}
50     description: |
51       NovaCompute specific configuration to inject into the cluster. Same
52       structure as ExtraConfig.
53     type: json
54   NovaComputeIPs:
55     default: {}
56     type: json
57   NovaPublicIP:
58     type: string
59     default: ''  # Has to be here because of the ignored empty value bug
60   EnablePackageInstall:
61     default: 'false'
62     description: Set to true to enable package installation via Puppet
63     type: boolean
64   ServiceNetMap:
65     default: {}
66     description: Mapping of service_name -> network name. Typically set
67                  via parameter_defaults in the resource registry.
68     type: json
69   EndpointMap:
70     default: {}
71     description: Mapping of service endpoint -> protocol. Typically set
72                  via parameter_defaults in the resource registry.
73     type: json
74   UpdateIdentifier:
75     default: ''
76     type: string
77     description: >
78       Setting to a previously unused value during stack-update will trigger
79       package update on all nodes
80   Hostname:
81     type: string
82     default: '' # Defaults to Heat created hostname
83   HostnameMap:
84     type: json
85     default: {}
86     description: Optional mapping to override hostnames
87   NetworkDeploymentActions:
88     type: comma_delimited_list
89     description: >
90       Heat action when to apply network configuration changes
91     default: ['CREATE']
92   SoftwareConfigTransport:
93     default: POLL_SERVER_CFN
94     description: |
95       How the server should receive the metadata required for software configuration.
96     type: string
97     constraints:
98     - allowed_values: [POLL_SERVER_CFN, POLL_SERVER_HEAT, POLL_TEMP_URL, ZAQAR_MESSAGE]
99   CloudDomain:
100     type: string
101     description: >
102       The DNS domain used for the hosts. This should match the dhcp_domain
103       configured in the Undercloud neutron. Defaults to localdomain.
104   ServerMetadata:
105     default: {}
106     description: >
107       Extra properties or metadata passed to Nova for the created nodes in
108       the overcloud. It's accessible via the Nova metadata API.
109     type: json
110   NovaComputeSchedulerHints:
111     type: json
112     description: Optional scheduler hints to pass to nova
113     default: {}
114   ServiceConfigSettings:
115     type: json
116     default: {}
117   ServiceNames:
118     type: comma_delimited_list
119     default: []
120   ConfigCommand:
121     type: string
122     description: Command which will be run whenever configuration data changes
123     default: os-refresh-config --timeout 14400
124
125 resources:
126
127   NovaCompute:
128     type: OS::TripleO::Server
129     metadata:
130       os-collect-config:
131         command: {get_param: ConfigCommand}
132     properties:
133       image: {get_param: NovaImage}
134       image_update_policy:
135         get_param: ImageUpdatePolicy
136       flavor: {get_param: OvercloudComputeFlavor}
137       key_name: {get_param: KeyName}
138       networks:
139         - network: ctlplane
140       user_data_format: SOFTWARE_CONFIG
141       user_data: {get_resource: UserData}
142       name:
143         str_replace:
144             template: {get_param: Hostname}
145             params: {get_param: HostnameMap}
146       software_config_transport: {get_param: SoftwareConfigTransport}
147       metadata: {get_param: ServerMetadata}
148       scheduler_hints: {get_param: NovaComputeSchedulerHints}
149
150   # Combine the NodeAdminUserData and NodeUserData mime archives
151   UserData:
152     type: OS::Heat::MultipartMime
153     properties:
154       parts:
155       - config: {get_resource: NodeAdminUserData}
156         type: multipart
157       - config: {get_resource: NodeUserData}
158         type: multipart
159
160   # Creates the "heat-admin" user if configured via the environment
161   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
162   NodeAdminUserData:
163     type: OS::TripleO::NodeAdminUserData
164
165   # For optional operator additional userdata
166   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
167   NodeUserData:
168     type: OS::TripleO::NodeUserData
169
170   ExternalPort:
171     type: OS::TripleO::Compute::Ports::ExternalPort
172     properties:
173       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
174       IPPool: {get_param: NovaComputeIPs}
175       NodeIndex: {get_param: NodeIndex}
176
177   InternalApiPort:
178     type: OS::TripleO::Compute::Ports::InternalApiPort
179     properties:
180       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
181       IPPool: {get_param: NovaComputeIPs}
182       NodeIndex: {get_param: NodeIndex}
183
184   StoragePort:
185     type: OS::TripleO::Compute::Ports::StoragePort
186     properties:
187       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
188       IPPool: {get_param: NovaComputeIPs}
189       NodeIndex: {get_param: NodeIndex}
190
191   StorageMgmtPort:
192     type: OS::TripleO::Compute::Ports::StorageMgmtPort
193     properties:
194       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
195       IPPool: {get_param: NovaComputeIPs}
196       NodeIndex: {get_param: NodeIndex}
197
198   TenantPort:
199     type: OS::TripleO::Compute::Ports::TenantPort
200     properties:
201       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
202       IPPool: {get_param: NovaComputeIPs}
203       NodeIndex: {get_param: NodeIndex}
204
205   ManagementPort:
206     type: OS::TripleO::Compute::Ports::ManagementPort
207     properties:
208       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
209       IPPool: {get_param: NovaComputeIPs}
210       NodeIndex: {get_param: NodeIndex}
211
212   NetIpMap:
213     type: OS::TripleO::Network::Ports::NetIpMap
214     properties:
215       ControlPlaneIp: {get_attr: [NovaCompute, networks, ctlplane, 0]}
216       ExternalIp: {get_attr: [ExternalPort, ip_address]}
217       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
218       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
219       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
220       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
221       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
222       StorageIp: {get_attr: [StoragePort, ip_address]}
223       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
224       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
225       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
226       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
227       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
228       TenantIp: {get_attr: [TenantPort, ip_address]}
229       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
230       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
231       ManagementIp: {get_attr: [ManagementPort, ip_address]}
232       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
233       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
234
235   NetworkConfig:
236     type: OS::TripleO::Compute::Net::SoftwareConfig
237     properties:
238       ControlPlaneIp: {get_attr: [NovaCompute, networks, ctlplane, 0]}
239       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
240       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
241       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
242       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
243       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
244       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
245
246   NetworkDeployment:
247     type: OS::TripleO::SoftwareDeployment
248     properties:
249       name: NetworkDeployment
250       config: {get_resource: NetworkConfig}
251       server: {get_resource: NovaCompute}
252       actions: {get_param: NetworkDeploymentActions}
253       input_values:
254         bridge_name: {get_param: NeutronPhysicalBridge}
255         interface_name: {get_param: NeutronPublicInterface}
256
257   NovaComputeConfig:
258     type: OS::Heat::StructuredConfig
259     properties:
260       group: os-apply-config
261       config:
262         hiera:
263           hierarchy:
264             - '"%{::uuid}"'
265             - heat_config_%{::deploy_config_name}
266             - compute_extraconfig
267             - extraconfig
268             - service_names
269             - service_configs
270             - compute
271             - ceph_cluster # provided by CephClusterConfig
272             - all_nodes # provided by allNodesConfig
273             - '"%{::osfamily}"'
274             - network
275             - neutron_bigswitch_data # Optionally provided by ComputeExtraConfigPre
276             - cisco_n1kv_data  # Optionally provided by ComputeExtraConfigPre
277             - nova_nuage_data  # Optionally provided by ComputeExtraConfigPre
278             - midonet_data # Optionally provided by AllNodesExtraConfig
279             - neutron_opencontrail_data  # Optionally provided by ComputeExtraConfigPre
280           merge_behavior: deeper
281           datafiles:
282             service_names:
283               mapped_data:
284                 service_names: {get_param: ServiceNames}
285             service_configs:
286               mapped_data:
287                 map_replace:
288                   - {get_param: ServiceConfigSettings}
289                   - values: {get_attr: [NetIpMap, net_ip_map]}
290             compute_extraconfig:
291               mapped_data: {get_param: NovaComputeExtraConfig}
292             extraconfig:
293               mapped_data: {get_param: ExtraConfig}
294             network:
295               mapped_data:
296                 net_ip_map: {get_attr: [NetIpMap, net_ip_map]}
297                 net_ip_subnet_map: {get_attr: [NetIpMap, net_ip_subnet_map]}
298                 net_ip_uri_map: {get_attr: [NetIpMap, net_ip_uri_map]}
299             compute:
300               mapped_data:
301                 nova_api_host: {get_input: nova_api_host}
302                 nova::compute::vncproxy_host: {get_input: nova_public_ip}
303                 nova::compute::vncserver_proxyclient_address: {get_input: nova_vnc_proxyclient_address}
304                 neutron::agents::ml2::ovs::local_ip: {get_input: neutron_local_ip}
305
306                 tripleo::packages::enable_install: {get_input: enable_package_install}
307                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
308
309   NovaComputeDeployment:
310     type: OS::TripleO::SoftwareDeployment
311     depends_on: NetworkDeployment
312     properties:
313       name: NovaComputeDeployment
314       config: {get_resource: NovaComputeConfig}
315       server: {get_resource: NovaCompute}
316       input_values:
317         nova_public_ip: {get_param: NovaPublicIP}
318         nova_api_host: {get_param: NovaApiHost}
319         nova_vnc_proxyclient_address: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, NovaVncProxyNetwork]}]}
320         neutron_local_ip: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, NeutronTenantNetwork]}]}
321         enable_package_install: {get_param: EnablePackageInstall}
322         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
323
324   # Resource for site-specific injection of root certificate
325   NodeTLSCAData:
326     depends_on: NovaComputeDeployment
327     type: OS::TripleO::NodeTLSCAData
328     properties:
329       server: {get_resource: NovaCompute}
330
331   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
332   ComputeExtraConfigPre:
333     depends_on: NovaComputeDeployment
334     type: OS::TripleO::ComputeExtraConfigPre
335     properties:
336         server: {get_resource: NovaCompute}
337
338   # Hook for site-specific additional pre-deployment config,
339   # applying to all nodes, e.g node registration/unregistration
340   NodeExtraConfig:
341     depends_on: [ComputeExtraConfigPre, NodeTLSCAData]
342     type: OS::TripleO::NodeExtraConfig
343     properties:
344         server: {get_resource: NovaCompute}
345
346   UpdateConfig:
347     type: OS::TripleO::Tasks::PackageUpdate
348
349   UpdateDeployment:
350     type: OS::Heat::SoftwareDeployment
351     properties:
352       name: UpdateDeployment
353       config: {get_resource: UpdateConfig}
354       server: {get_resource: NovaCompute}
355       input_values:
356         update_identifier:
357           get_param: UpdateIdentifier
358
359 outputs:
360   ip_address:
361     description: IP address of the server in the ctlplane network
362     value: {get_attr: [NovaCompute, networks, ctlplane, 0]}
363   external_ip_address:
364     description: IP address of the server in the external network
365     value: {get_attr: [ExternalPort, ip_address]}
366   internal_api_ip_address:
367     description: IP address of the server in the internal_api network
368     value: {get_attr: [InternalApiPort, ip_address]}
369   storage_ip_address:
370     description: IP address of the server in the storage network
371     value: {get_attr: [StoragePort, ip_address]}
372   storage_mgmt_ip_address:
373     description: IP address of the server in the storage_mgmt network
374     value: {get_attr: [StorageMgmtPort, ip_address]}
375   tenant_ip_address:
376     description: IP address of the server in the tenant network
377     value: {get_attr: [TenantPort, ip_address]}
378   management_ip_address:
379     description: IP address of the server in the management network
380     value: {get_attr: [ManagementPort, ip_address]}
381   hostname:
382     description: Hostname of the server
383     value: {get_attr: [NovaCompute, name]}
384   hosts_entry:
385     description: >
386       Server's IP address and hostname in the /etc/hosts format
387     value:
388       str_replace:
389         template: |
390           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
391           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
392           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
393           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
394           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
395           TENANTIP TENANTHOST.DOMAIN TENANTHOST
396           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
397         params:
398           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, ComputeHostnameResolveNetwork]}]}
399           DOMAIN: {get_param: CloudDomain}
400           PRIMARYHOST: {get_attr: [NovaCompute, name]}
401           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
402           EXTERNALHOST:
403             list_join:
404             - '.'
405             - - {get_attr: [NovaCompute, name]}
406               - external
407           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
408           INTERNAL_APIHOST:
409             list_join:
410             - '.'
411             - - {get_attr: [NovaCompute, name]}
412               - internalapi
413           STORAGEIP: {get_attr: [StoragePort, ip_address]}
414           STORAGEHOST:
415             list_join:
416             - '.'
417             - - {get_attr: [NovaCompute, name]}
418               - storage
419           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
420           STORAGE_MGMTHOST:
421             list_join:
422             - '.'
423             - - {get_attr: [NovaCompute, name]}
424               - storagemgmt
425           TENANTIP: {get_attr: [TenantPort, ip_address]}
426           TENANTHOST:
427             list_join:
428             - '.'
429             - - {get_attr: [NovaCompute, name]}
430               - tenant
431           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
432           MANAGEMENTHOST:
433             list_join:
434             - '.'
435             - - {get_attr: [NovaCompute, name]}
436               - management
437   nova_server_resource:
438     description: Heat resource handle for the Nova compute server
439     value:
440       {get_resource: NovaCompute}