e9f787622040ca023744e80be5fa43249bfb7391
[apex-tripleo-heat-templates.git] / puppet / compute.yaml
1 heat_template_version: 2015-10-15
2
3 description: >
4   OpenStack hypervisor node configured via Puppet.
5
6 parameters:
7   AdminPassword:
8     default: unset
9     description: The password for the keystone admin account, used for monitoring, querying neutron etc.
10     type: string
11     hidden: true
12   CeilometerComputeAgent:
13     description: Indicates whether the Compute agent is present and expects nova-compute to be configured accordingly
14     type: string
15     default: ''
16     constraints:
17     - allowed_values: ['', Present]
18   CeilometerMeteringSecret:
19     default: unset
20     description: Secret shared by the ceilometer services.
21     type: string
22     hidden: true
23   CeilometerPassword:
24     default: unset
25     description: The password for the ceilometer service account.
26     type: string
27     hidden: true
28   CinderEnableNfsBackend:
29     default: false
30     description: Whether to enable or not the NFS backend for Cinder
31     type: boolean
32   CinderEnableRbdBackend:
33     default: false
34     description: Whether to enable or not the Rbd backend for Cinder
35     type: boolean
36   Debug:
37     default: ''
38     description: Set to True to enable debugging on all services.
39     type: string
40   ExtraConfig:
41     default: {}
42     description: |
43       Additional hiera configuration to inject into the cluster. Note
44       that NovaComputeExtraConfig takes precedence over ExtraConfig.
45     type: json
46   Flavor:
47     description: Flavor for the nova compute node
48     type: string
49     constraints:
50       - custom_constraint: nova.flavor
51   GlanceHost:
52     type: string
53     default: ''  # Has to be here because of the ignored empty value bug
54   Image:
55     type: string
56     default: overcloud-compute
57     constraints:
58       - custom_constraint: glance.image
59   ImageUpdatePolicy:
60     default: 'REBUILD_PRESERVE_EPHEMERAL'
61     description: What policy to use when reconstructing instances. REBUILD for rebuilds, REBUILD_PRESERVE_EPHEMERAL to preserve /mnt.
62     type: string
63   KeyName:
64     description: Name of an existing Nova key pair to enable SSH access to the instances
65     type: string
66     default: default
67     constraints:
68       - custom_constraint: nova.keypair
69   KeystoneAdminApiVirtualIP:
70     type: string
71     default: ''
72   KeystonePublicApiVirtualIP:
73      type: string
74      default: ''
75   NeutronBridgeMappings:
76     description: >
77       The OVS logical->physical bridge mappings to use. See the Neutron
78       documentation for details. Defaults to mapping br-ex - the external
79       bridge on hosts - to a physical name 'datacentre' which can be used
80       to create provider networks (and we use this for the default floating
81       network) - if changing this either use different post-install network
82       scripts or be sure to keep 'datacentre' as a mapping network name.
83     type: comma_delimited_list
84     default: "datacentre:br-ex"
85   NeutronEnableTunnelling:
86     type: string
87     default: "True"
88   NeutronEnableL2Pop:
89     type: string
90     description: >
91         Enable/disable the L2 population feature in the Neutron agents.
92     default: "False"
93   NeutronFlatNetworks:
94     type: comma_delimited_list
95     default: 'datacentre'
96     description: >
97       If set, flat networks to configure in neutron plugins.
98   NeutronHost:
99     type: string
100     default: ''  # Has to be here because of the ignored empty value bug
101   NeutronNetworkType:
102     type: comma_delimited_list
103     description: The tenant network type for Neutron.
104     default: 'vxlan'
105   NeutronNetworkVLANRanges:
106     default: 'datacentre'
107     description: >
108       The Neutron ML2 and OpenVSwitch vlan mapping range to support. See the
109       Neutron documentation for permitted values. Defaults to permitting any
110       VLAN on the 'datacentre' physical network (See NeutronBridgeMappings).
111     type: comma_delimited_list
112   NeutronPassword:
113     default: unset
114     description: The password for the neutron service account, used by neutron agents.
115     type: string
116     hidden: true
117   NeutronPhysicalBridge:
118     default: 'br-ex'
119     description: An OVS bridge to create for accessing external networks.
120     type: string
121   NeutronPublicInterface:
122     default: nic1
123     description: A port to add to the NeutronPhysicalBridge.
124     type: string
125   NeutronTunnelTypes:
126     type: comma_delimited_list
127     description: |
128         The tunnel types for the Neutron tenant network.
129     default: 'vxlan'
130   NeutronTunnelIdRanges:
131     description: |
132         Comma-separated list of <tun_min>:<tun_max> tuples enumerating ranges
133         of GRE tunnel IDs that are available for tenant network allocation
134     default: ["1:1000", ]
135     type: comma_delimited_list
136   NeutronVniRanges:
137     description: |
138         Comma-separated list of <vni_min>:<vni_max> tuples enumerating ranges
139         of VXLAN VNI IDs that are available for tenant network allocation
140     default: ["1:1000", ]
141     type: comma_delimited_list
142   NeutronPublicInterfaceRawDevice:
143     default: ''
144     type: string
145   NeutronDVR:
146     default: 'False'
147     type: string
148   NeutronMetadataProxySharedSecret:
149     default: 'unset'
150     description: Shared secret to prevent spoofing
151     type: string
152     hidden: true
153   NeutronCorePlugin:
154     default: 'ml2'
155     description: |
156         The core plugin for Neutron. The value should be the entrypoint to be loaded
157         from neutron.core_plugins namespace.
158     type: string
159   NeutronServicePlugins:
160     default: "router"
161     description: |
162         Comma-separated list of service plugin entrypoints to be loaded from the
163         neutron.service_plugins namespace.
164     type: comma_delimited_list
165   NeutronTypeDrivers:
166     default: "vxlan,vlan,flat,gre"
167     description: |
168         Comma-separated list of network type driver entrypoints to be loaded.
169     type: comma_delimited_list
170   NeutronMechanismDrivers:
171     default: 'openvswitch'
172     description: |
173         The mechanism drivers for the Neutron tenant network.
174     type: comma_delimited_list
175   # Not relevant for Computes, should be removed
176   NeutronAllowL3AgentFailover:
177     default: 'True'
178     description: Allow automatic l3-agent failover
179     type: string
180   # Not relevant for Computes, should be removed
181   NeutronL3HA:
182     default: 'False'
183     description: Whether to enable l3-agent HA
184     type: string
185   NeutronAgentMode:
186     default: 'dvr_snat'
187     description: Agent mode for the neutron-l3-agent on the controller hosts
188     type: string
189   NovaApiHost:
190     type: string
191     default: ''  # Has to be here because of the ignored empty value bug
192   NovaComputeDriver:
193     type: string
194     default: libvirt.LibvirtDriver
195   NovaComputeExtraConfig:
196     default: {}
197     description: |
198       NovaCompute specific configuration to inject into the cluster. Same
199       structure as ExtraConfig.
200     type: json
201   NovaComputeLibvirtType:
202     type: string
203     default: ''
204   NovaComputeLibvirtVifDriver:
205     default: ''
206     description: Libvirt VIF driver configuration for the network
207     type: string
208   NovaEnableRbdBackend:
209     default: false
210     description: Whether to enable or not the Rbd backend for Nova
211     type: boolean
212   NovaPassword:
213     default: unset
214     description: The password for the nova service account, used by nova-api.
215     type: string
216     hidden: true
217   NovaPublicIP:
218     type: string
219     default: ''  # Has to be here because of the ignored empty value bug
220   NovaOVSBridge:
221     default: 'br-int'
222     description: Name of integration bridge used by Open vSwitch
223     type: string
224   NovaSecurityGroupAPI:
225     default: 'neutron'
226     description: The full class name of the security API class
227     type: string
228   NtpServer:
229     default: ''
230     description: Comma-separated list of ntp servers
231     type: comma_delimited_list
232   RabbitHost:
233     type: string
234     default: ''  # Has to be here because of the ignored empty value bug
235   RabbitPassword:
236     default: guest
237     description: The password for RabbitMQ
238     type: string
239     hidden: true
240   RabbitUserName:
241     default: guest
242     description: The username for RabbitMQ
243     type: string
244   RabbitClientUseSSL:
245     default: false
246     description: >
247         Rabbit client subscriber parameter to specify
248         an SSL connection to the RabbitMQ host.
249     type: string
250   RabbitClientPort:
251     default: 5672
252     description: Set rabbit subscriber port, change this if using SSL
253     type: number
254   SnmpdReadonlyUserName:
255     default: ro_snmp_user
256     description: The user name for SNMPd with readonly rights running on all Overcloud nodes
257     type: string
258   SnmpdReadonlyUserPassword:
259     default: unset
260     description: The user password for SNMPd with readonly rights running on all Overcloud nodes
261     type: string
262     hidden: true
263   EnablePackageInstall:
264     default: 'false'
265     description: Set to true to enable package installation via Puppet
266     type: boolean
267   ServiceNetMap:
268     default: {}
269     description: Mapping of service_name -> network name. Typically set
270                  via parameter_defaults in the resource registry.
271     type: json
272   EndpointMap:
273     default: {}
274     description: Mapping of service endpoint -> protocol. Typically set
275                  via parameter_defaults in the resource registry.
276     type: json
277   UpdateIdentifier:
278     default: ''
279     type: string
280     description: >
281       Setting to a previously unused value during stack-update will trigger
282       package update on all nodes
283   Hostname:
284     type: string
285     default: '' # Defaults to Heat created hostname
286   NetworkDeploymentActions:
287     type: comma_delimited_list
288     description: >
289       Heat action when to apply network configuration changes
290     default: ['CREATE']
291   CloudDomain:
292     default: ''
293     type: string
294     description: >
295       The DNS domain used for the hosts. This should match the dhcp_domain
296       configured in the Undercloud neutron. Defaults to localdomain.
297   ServerMetadata:
298     default: {}
299     description: >
300       Extra properties or metadata passed to Nova for the created nodes in
301       the overcloud. It's accessible via the Nova metadata API.
302     type: json
303   SchedulerHints:
304     type: json
305     description: Optional scheduler hints to pass to nova
306     default: {}
307
308 resources:
309
310   NovaCompute:
311     type: OS::Nova::Server
312     properties:
313       image:
314         {get_param: Image}
315       image_update_policy:
316         get_param: ImageUpdatePolicy
317       flavor: {get_param: Flavor}
318       key_name: {get_param: KeyName}
319       networks:
320         - network: ctlplane
321       user_data_format: SOFTWARE_CONFIG
322       user_data: {get_resource: UserData}
323       name: {get_param: Hostname}
324       metadata: {get_param: ServerMetadata}
325       scheduler_hints: {get_param: SchedulerHints}
326
327   # Combine the NodeAdminUserData and NodeUserData mime archives
328   UserData:
329     type: OS::Heat::MultipartMime
330     properties:
331       parts:
332       - config: {get_resource: NodeAdminUserData}
333         type: multipart
334       - config: {get_resource: NodeUserData}
335         type: multipart
336
337   # Creates the "heat-admin" user if configured via the environment
338   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
339   NodeAdminUserData:
340     type: OS::TripleO::NodeAdminUserData
341
342   # For optional operator additional userdata
343   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
344   NodeUserData:
345     type: OS::TripleO::NodeUserData
346
347   InternalApiPort:
348     type: OS::TripleO::Compute::Ports::InternalApiPort
349     properties:
350       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
351
352   StoragePort:
353     type: OS::TripleO::Compute::Ports::StoragePort
354     properties:
355       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
356
357   TenantPort:
358     type: OS::TripleO::Compute::Ports::TenantPort
359     properties:
360       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
361
362   NetIpMap:
363     type: OS::TripleO::Network::Ports::NetIpMap
364     properties:
365       ControlPlaneIp: {get_attr: [NovaCompute, networks, ctlplane, 0]}
366       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
367       StorageIp: {get_attr: [StoragePort, ip_address]}
368       TenantIp: {get_attr: [TenantPort, ip_address]}
369
370   NetworkConfig:
371     type: OS::TripleO::Compute::Net::SoftwareConfig
372     properties:
373       ControlPlaneIp: {get_attr: [NovaCompute, networks, ctlplane, 0]}
374       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
375       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
376       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
377
378   NetworkDeployment:
379     type: OS::TripleO::SoftwareDeployment
380     properties:
381       config: {get_resource: NetworkConfig}
382       server: {get_resource: NovaCompute}
383       actions: {get_param: NetworkDeploymentActions}
384       input_values:
385         bridge_name: {get_param: NeutronPhysicalBridge}
386         interface_name: {get_param: NeutronPublicInterface}
387
388   NovaComputeConfig:
389     type: OS::Heat::StructuredConfig
390     properties:
391       group: os-apply-config
392       config:
393         hiera:
394           hierarchy:
395             - '"%{::uuid}"'
396             - heat_config_%{::deploy_config_name}
397             - compute_extraconfig
398             - extraconfig
399             - compute
400             - ceph_cluster # provided by CephClusterConfig
401             - ceph
402             - all_nodes # provided by allNodesConfig
403             - '"%{::osfamily}"'
404             - common
405             - cisco_n1kv_data  # Optionally provided by ComputeExtraConfigPre
406             - nova_nuage_data  # Optionally provided by ComputeExtraConfigPre
407             - midonet_data # Optionally provided by AllNodesExtraConfig
408           datafiles:
409             compute_extraconfig:
410               mapped_data: {get_param: NovaComputeExtraConfig}
411             extraconfig:
412               mapped_data: {get_param: ExtraConfig}
413             common:
414               raw_data: {get_file: hieradata/common.yaml}
415             ceph:
416               raw_data: {get_file: hieradata/ceph.yaml}
417             compute:
418               raw_data: {get_file: hieradata/compute.yaml}
419               mapped_data:
420                 cinder_enable_nfs_backend: {get_input: cinder_enable_nfs_backend}
421                 nova::debug: {get_input: debug}
422                 nova::rabbit_userid: {get_input: rabbit_username}
423                 nova::rabbit_password: {get_input: rabbit_password}
424                 nova::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
425                 nova::rabbit_port: {get_input: rabbit_client_port}
426                 nova_compute_driver: {get_input: nova_compute_driver}
427                 nova::compute::libvirt::libvirt_virt_type: {get_input: nova_compute_libvirt_type}
428                 nova::compute::neutron::libvirt_vif_driver: {get_input: nova_compute_libvirt_vif_driver}
429                 nova_api_host: {get_input: nova_api_host}
430                 nova::compute::vncproxy_host: {get_input: nova_public_ip}
431                 nova::compute::rbd::ephemeral_storage: {get_input: nova_enable_rbd_backend}
432                 rbd_persistent_storage: {get_input: cinder_enable_rbd_backend}
433                 nova_password: {get_input: nova_password}
434                 nova::compute::vncserver_proxyclient_address: {get_input: nova_vnc_proxyclient_address}
435                 nova::network::neutron::neutron_ovs_bridge: {get_input: nova_ovs_bridge}
436                 nova::network::neutron::security_group_api: {get_input: nova_security_group_api}
437                 ceilometer::debug: {get_input: debug}
438                 ceilometer::rabbit_userid: {get_input: rabbit_username}
439                 ceilometer::rabbit_password: {get_input: rabbit_password}
440                 ceilometer::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
441                 ceilometer::rabbit_port: {get_input: rabbit_client_port}
442                 ceilometer::metering_secret: {get_input: ceilometer_metering_secret}
443                 ceilometer::agent::auth::auth_password: {get_input: ceilometer_password}
444                 ceilometer::agent::auth::auth_url: {get_input: ceilometer_agent_auth_url}
445                 ceilometer_compute_agent: {get_input: ceilometer_compute_agent}
446                 snmpd_readonly_user_name: {get_input: snmpd_readonly_user_name}
447                 snmpd_readonly_user_password: {get_input: snmpd_readonly_user_password}
448                 nova::glance_api_servers: {get_input: glance_api_servers}
449                 neutron::debug: {get_input: debug}
450                 neutron::rabbit_password: {get_input: rabbit_password}
451                 neutron::rabbit_user: {get_input: rabbit_username}
452                 neutron::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
453                 neutron::rabbit_port: {get_input: rabbit_client_port}
454                 neutron::plugins::ml2::flat_networks: {get_input: neutron_flat_networks}
455                 neutron_host: {get_input: neutron_host}
456                 neutron::agents::ml2::ovs::local_ip: {get_input: neutron_local_ip}
457
458                 neutron::plugins::ml2::tenant_network_types: {get_input: neutron_tenant_network_types}
459                 neutron::agents::ml2::ovs:tunnel_types: {get_input: neutron_tunnel_types}
460                 neutron::plugins::ml2::network_vlan_ranges: {get_input: neutron_network_vlan_ranges}
461                 neutron::plugins::ml2::tunnel_id_ranges: {get_input: neutron_tunnel_id_ranges}
462                 neutron::plugins::ml2::vni_ranges: {get_input: neutron_vni_ranges}
463                 neutron::agents::ml2::ovs::bridge_mappings: {get_input: neutron_bridge_mappings}
464                 neutron::agents::ml2::ovs::enable_tunneling: {get_input: neutron_enable_tunneling}
465                 neutron::agents::ml2::ovs::l2_population: {get_input: neutron_enable_l2pop}
466                 neutron_physical_bridge: {get_input: neutron_physical_bridge}
467                 neutron_public_interface: {get_input: neutron_public_interface}
468                 nova::network::neutron::neutron_admin_password: {get_input: neutron_password}
469                 nova::network::neutron::neutron_url: {get_input: neutron_internal_url}
470                 nova::network::neutron::neutron_admin_auth_url: {get_input: neutron_admin_auth_url}
471                 neutron_router_distributed: {get_input: neutron_router_distributed}
472                 neutron_agent_mode: {get_input: neutron_agent_mode}
473                 neutron_metadata_proxy_shared_secret: {get_input: neutron_metadata_proxy_shared_secret}
474                 neutron::core_plugin: {get_input: neutron_core_plugin}
475                 neutron::service_plugins: {get_input: neutron_service_plugins}
476                 neutron::plugins::ml2::type_drivers: {get_input: neutron_type_drivers}
477                 neutron::plugins::ml2::mechanism_drivers: {get_input: neutron_mechanism_drivers}
478                 neutron_public_interface_raw_device: {get_input: neutron_public_interface_raw_device}
479                 keystone_public_api_virtual_ip: {get_input: keystone_vip}
480                 admin_password: {get_input: admin_password}
481                 ntp::servers: {get_input: ntp_servers}
482                 tripleo::packages::enable_install: {get_input: enable_package_install}
483                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
484
485   NovaComputeDeployment:
486     type: OS::TripleO::SoftwareDeployment
487     depends_on: NetworkDeployment
488     properties:
489       config: {get_resource: NovaComputeConfig}
490       server: {get_resource: NovaCompute}
491       input_values:
492         cinder_enable_nfs_backend: {get_param: CinderEnableNfsBackend}
493         debug: {get_param: Debug}
494         nova_compute_driver: {get_param: NovaComputeDriver}
495         nova_compute_libvirt_type: {get_param: NovaComputeLibvirtType}
496         nova_compute_libvirt_vif_driver: {get_param: NovaComputeLibvirtVifDriver}
497         nova_public_ip: {get_param: NovaPublicIP}
498         nova_api_host: {get_param: NovaApiHost}
499         nova_password: {get_param: NovaPassword}
500         nova_enable_rbd_backend: {get_param: NovaEnableRbdBackend}
501         cinder_enable_rbd_backend: {get_param: CinderEnableRbdBackend}
502         nova_vnc_proxyclient_address: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, NovaVncProxyNetwork]}]}
503         nova_ovs_bridge: {get_param: NovaOVSBridge}
504         nova_security_group_api: {get_param: NovaSecurityGroupAPI}
505         ceilometer_metering_secret: {get_param: CeilometerMeteringSecret}
506         ceilometer_password: {get_param: CeilometerPassword}
507         ceilometer_compute_agent: {get_param: CeilometerComputeAgent}
508         ceilometer_agent_auth_url: {get_param: [EndpointMap, KeystoneInternal, uri]}
509         snmpd_readonly_user_name: {get_param: SnmpdReadonlyUserName}
510         snmpd_readonly_user_password: {get_param: SnmpdReadonlyUserPassword}
511         glance_api_servers: {get_param: [EndpointMap, GlanceInternal, uri]}
512         neutron_flat_networks:
513           str_replace:
514             template: NETWORKS
515             params:
516               NETWORKS: {get_param: NeutronFlatNetworks}
517         neutron_host: {get_param: NeutronHost}
518         neutron_local_ip: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, NeutronTenantNetwork]}]}
519         neutron_tunnel_id_ranges:
520           str_replace:
521             template: RANGES
522             params:
523               RANGES: {get_param: NeutronTunnelIdRanges}
524         neutron_vni_ranges:
525           str_replace:
526             template: RANGES
527             params:
528               RANGES: {get_param: NeutronVniRanges}
529         neutron_tenant_network_types:
530           str_replace:
531             template: TYPES
532             params:
533               TYPES: {get_param: NeutronNetworkType}
534         neutron_tunnel_types:
535           str_replace:
536             template: TYPES
537             params:
538               TYPES: {get_param: NeutronTunnelTypes}
539         neutron_network_vlan_ranges:
540           str_replace:
541             template: RANGES
542             params:
543               RANGES: {get_param: NeutronNetworkVLANRanges}
544         neutron_bridge_mappings:
545           str_replace:
546             template: MAPPINGS
547             params:
548               MAPPINGS: {get_param: NeutronBridgeMappings}
549         neutron_enable_tunneling: {get_param: NeutronEnableTunnelling}
550         neutron_enable_l2pop: {get_param: NeutronEnableL2Pop}
551         neutron_physical_bridge: {get_param: NeutronPhysicalBridge}
552         neutron_public_interface: {get_param: NeutronPublicInterface}
553         neutron_password: {get_param: NeutronPassword}
554         neutron_agent_mode: {get_param: NeutronAgentMode}
555         neutron_router_distributed: {get_param: NeutronDVR}
556         neutron_metadata_proxy_shared_secret: {get_param: NeutronMetadataProxySharedSecret}
557         neutron_core_plugin: {get_param: NeutronCorePlugin}
558         neutron_service_plugins:
559           str_replace:
560             template: PLUGINS
561             params:
562               PLUGINS: {get_param: NeutronServicePlugins}
563         neutron_type_drivers:
564           str_replace:
565             template: DRIVERS
566             params:
567               DRIVERS: {get_param: NeutronTypeDrivers}
568         neutron_mechanism_drivers:
569           str_replace:
570             template: MECHANISMS
571             params:
572               MECHANISMS: {get_param: NeutronMechanismDrivers}
573         neutron_public_interface_raw_device: {get_param: NeutronPublicInterfaceRawDevice}
574         neutron_internal_url: {get_param: [EndpointMap, NeutronInternal, uri]}
575         neutron_admin_auth_url: {get_param: [EndpointMap, KeystoneAdmin, uri]}
576         keystone_vip: {get_param: KeystonePublicApiVirtualIP}
577         admin_password: {get_param: AdminPassword}
578         rabbit_username: {get_param: RabbitUserName}
579         rabbit_password: {get_param: RabbitPassword}
580         rabbit_client_use_ssl: {get_param: RabbitClientUseSSL}
581         rabbit_client_port: {get_param: RabbitClientPort}
582         ntp_servers: {get_param: NtpServer}
583         enable_package_install: {get_param: EnablePackageInstall}
584         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
585
586   # Resource for site-specific injection of root certificate
587   NodeTLSCAData:
588     depends_on: NovaComputeDeployment
589     type: OS::TripleO::NodeTLSCAData
590     properties:
591       server: {get_resource: NovaCompute}
592
593   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
594   ComputeExtraConfigPre:
595     depends_on: NovaComputeDeployment
596     type: OS::TripleO::ComputeExtraConfigPre
597     properties:
598         server: {get_resource: NovaCompute}
599
600   # Hook for site-specific additional pre-deployment config,
601   # applying to all nodes, e.g node registration/unregistration
602   NodeExtraConfig:
603     depends_on: [ComputeExtraConfigPre, NodeTLSCAData]
604     type: OS::TripleO::NodeExtraConfig
605     properties:
606         server: {get_resource: NovaCompute}
607
608   UpdateConfig:
609     type: OS::TripleO::Tasks::PackageUpdate
610
611   UpdateDeployment:
612     type: OS::Heat::SoftwareDeployment
613     properties:
614       config: {get_resource: UpdateConfig}
615       server: {get_resource: NovaCompute}
616       input_values:
617         update_identifier:
618           get_param: UpdateIdentifier
619
620 outputs:
621   ip_address:
622     description: IP address of the server in the ctlplane network
623     value: {get_attr: [NovaCompute, networks, ctlplane, 0]}
624   internal_api_ip_address:
625     description: IP address of the server in the internal_api network
626     value: {get_attr: [InternalApiPort, ip_address]}
627   storage_ip_address:
628     description: IP address of the server in the storage network
629     value: {get_attr: [StoragePort, ip_address]}
630   tenant_ip_address:
631     description: IP address of the server in the tenant network
632     value: {get_attr: [TenantPort, ip_address]}
633   hostname:
634     description: Hostname of the server
635     value: {get_attr: [NovaCompute, name]}
636   hosts_entry:
637     description: >
638       Server's IP address and hostname in the /etc/hosts format
639     value:
640       str_replace:
641         template: "IP HOST.DOMAIN HOST"
642         params:
643           IP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, ComputeHostnameResolveNetwork]}]}
644           DOMAIN: {get_param: CloudDomain}
645           HOST: {get_attr: [NovaCompute, name]}
646   nova_server_resource:
647     description: Heat resource handle for the Nova compute server
648     value:
649       {get_resource: NovaCompute}
650   config_identifier:
651     description: identifier which changes if the node configuration may need re-applying
652     value:
653       list_join:
654       - ','
655       - - {get_attr: [NovaComputeDeployment, deploy_stdout]}
656         - {get_attr: [NodeTLSCAData, deploy_stdout]}
657         - {get_attr: [ComputeExtraConfigPre, deploy_stdout]}
658         - {get_param: UpdateIdentifier}