Remove unneeded net_ip_map dump into hieradata
[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   AdminPassword:
8     description: The password for the keystone admin account, used for monitoring, querying neutron etc.
9     type: string
10     hidden: true
11   CeilometerComputeAgent:
12     description: Indicates whether the Compute agent is present and expects nova-compute to be configured accordingly
13     type: string
14     default: ''
15     constraints:
16     - allowed_values: ['', Present]
17   CeilometerMeteringSecret:
18     description: Secret shared by the ceilometer services.
19     type: string
20     hidden: true
21   CeilometerPassword:
22     description: The password for the ceilometer service account.
23     type: string
24     hidden: true
25   CinderEnableNfsBackend:
26     default: false
27     description: Whether to enable or not the NFS backend for Cinder
28     type: boolean
29   CinderEnableRbdBackend:
30     default: false
31     description: Whether to enable or not the Rbd backend for Cinder
32     type: boolean
33   Debug:
34     default: ''
35     description: Set to True to enable debugging on all services.
36     type: string
37   ExtraConfig:
38     default: {}
39     description: |
40       Additional hiera configuration to inject into the cluster. Note
41       that NovaComputeExtraConfig takes precedence over ExtraConfig.
42     type: json
43   OvercloudComputeFlavor:
44     description: Flavor for the nova compute node
45     default: baremetal
46     type: string
47     constraints:
48       - custom_constraint: nova.flavor
49   GlanceHost:
50     type: string
51     default: ''  # Has to be here because of the ignored empty value bug
52   NovaImage:
53     type: string
54     default: overcloud-full
55     constraints:
56       - custom_constraint: glance.image
57   ImageUpdatePolicy:
58     default: 'REBUILD_PRESERVE_EPHEMERAL'
59     description: What policy to use when reconstructing instances. REBUILD for rebuilds, REBUILD_PRESERVE_EPHEMERAL to preserve /mnt.
60     type: string
61   KeyName:
62     description: Name of an existing Nova key pair to enable SSH access to the instances
63     type: string
64     default: default
65     constraints:
66       - custom_constraint: nova.keypair
67   KeystoneAdminApiVirtualIP:
68     type: string
69     default: ''
70   KeystonePublicApiVirtualIP:
71      type: string
72      default: ''
73   NeutronPassword:
74     description: The password for the neutron service account, used by neutron agents.
75     type: string
76     hidden: true
77   NeutronPhysicalBridge:
78     default: 'br-ex'
79     description: An OVS bridge to create for accessing external networks.
80     type: string
81   NeutronPublicInterface:
82     default: nic1
83     description: A port to add to the NeutronPhysicalBridge.
84     type: string
85   NodeIndex:
86     type: number
87     default: 0
88   NovaApiHost:
89     type: string
90     default: ''  # Has to be here because of the ignored empty value bug
91   NovaComputeDriver:
92     type: string
93     default: libvirt.LibvirtDriver
94   NovaComputeExtraConfig:
95     default: {}
96     description: |
97       NovaCompute specific configuration to inject into the cluster. Same
98       structure as ExtraConfig.
99     type: json
100   NovaComputeIPs:
101     default: {}
102     type: json
103   NovaComputeLibvirtType:
104     type: string
105     default: kvm
106   NovaComputeLibvirtVifDriver:
107     default: ''
108     description: Libvirt VIF driver configuration for the network
109     type: string
110   NovaEnableRbdBackend:
111     default: false
112     description: Whether to enable or not the Rbd backend for Nova
113     type: boolean
114   NovaIPv6:
115     default: false
116     description: Enable IPv6 features in Nova
117     type: boolean
118   NovaPassword:
119     description: The password for the nova service account, used by nova-api.
120     type: string
121     hidden: true
122   NovaPublicIP:
123     type: string
124     default: ''  # Has to be here because of the ignored empty value bug
125   NovaOVSBridge:
126     default: 'br-int'
127     description: Name of integration bridge used by Open vSwitch
128     type: string
129   NovaSecurityGroupAPI:
130     default: 'neutron'
131     description: The full class name of the security API class
132     type: string
133   RabbitHost:
134     type: string
135     default: ''  # Has to be here because of the ignored empty value bug
136   RabbitPassword:
137     description: The password for RabbitMQ
138     type: string
139     hidden: true
140   RabbitUserName:
141     default: guest
142     description: The username for RabbitMQ
143     type: string
144   RabbitClientUseSSL:
145     default: false
146     description: >
147         Rabbit client subscriber parameter to specify
148         an SSL connection to the RabbitMQ host.
149     type: string
150   RabbitClientPort:
151     default: 5672
152     description: Set rabbit subscriber port, change this if using SSL
153     type: number
154   UpgradeLevelNovaCompute:
155     type: string
156     description: Nova Compute upgrade level
157     default: ''
158   EnablePackageInstall:
159     default: 'false'
160     description: Set to true to enable package installation via Puppet
161     type: boolean
162   ServiceNetMap:
163     default: {}
164     description: Mapping of service_name -> network name. Typically set
165                  via parameter_defaults in the resource registry.
166     type: json
167   EndpointMap:
168     default: {}
169     description: Mapping of service endpoint -> protocol. Typically set
170                  via parameter_defaults in the resource registry.
171     type: json
172   UpdateIdentifier:
173     default: ''
174     type: string
175     description: >
176       Setting to a previously unused value during stack-update will trigger
177       package update on all nodes
178   Hostname:
179     type: string
180     default: '' # Defaults to Heat created hostname
181   HostnameMap:
182     type: json
183     default: {}
184     description: Optional mapping to override hostnames
185   NetworkDeploymentActions:
186     type: comma_delimited_list
187     description: >
188       Heat action when to apply network configuration changes
189     default: ['CREATE']
190   SoftwareConfigTransport:
191     default: POLL_SERVER_CFN
192     description: |
193       How the server should receive the metadata required for software configuration.
194     type: string
195     constraints:
196     - allowed_values: [POLL_SERVER_CFN, POLL_SERVER_HEAT, POLL_TEMP_URL, ZAQAR_MESSAGE]
197   CloudDomain:
198     type: string
199     description: >
200       The DNS domain used for the hosts. This should match the dhcp_domain
201       configured in the Undercloud neutron. Defaults to localdomain.
202   ServerMetadata:
203     default: {}
204     description: >
205       Extra properties or metadata passed to Nova for the created nodes in
206       the overcloud. It's accessible via the Nova metadata API.
207     type: json
208   NovaComputeSchedulerHints:
209     type: json
210     description: Optional scheduler hints to pass to nova
211     default: {}
212   ServiceConfigSettings:
213     type: json
214     default: {}
215   ServiceNames:
216     type: comma_delimited_list
217     default: []
218   ConfigCommand:
219     type: string
220     description: Command which will be run whenever configuration data changes
221     default: os-refresh-config --timeout 14400
222
223 resources:
224
225   NovaCompute:
226     type: OS::TripleO::Server
227     metadata:
228       os-collect-config:
229         command: {get_param: ConfigCommand}
230     properties:
231       image: {get_param: NovaImage}
232       image_update_policy:
233         get_param: ImageUpdatePolicy
234       flavor: {get_param: OvercloudComputeFlavor}
235       key_name: {get_param: KeyName}
236       networks:
237         - network: ctlplane
238       user_data_format: SOFTWARE_CONFIG
239       user_data: {get_resource: UserData}
240       name:
241         str_replace:
242             template: {get_param: Hostname}
243             params: {get_param: HostnameMap}
244       software_config_transport: {get_param: SoftwareConfigTransport}
245       metadata: {get_param: ServerMetadata}
246       scheduler_hints: {get_param: NovaComputeSchedulerHints}
247
248   # Combine the NodeAdminUserData and NodeUserData mime archives
249   UserData:
250     type: OS::Heat::MultipartMime
251     properties:
252       parts:
253       - config: {get_resource: NodeAdminUserData}
254         type: multipart
255       - config: {get_resource: NodeUserData}
256         type: multipart
257
258   # Creates the "heat-admin" user if configured via the environment
259   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
260   NodeAdminUserData:
261     type: OS::TripleO::NodeAdminUserData
262
263   # For optional operator additional userdata
264   # Should return a OS::Heat::MultipartMime reference via OS::stack_id
265   NodeUserData:
266     type: OS::TripleO::NodeUserData
267
268   ExternalPort:
269     type: OS::TripleO::Compute::Ports::ExternalPort
270     properties:
271       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
272       IPPool: {get_param: NovaComputeIPs}
273       NodeIndex: {get_param: NodeIndex}
274
275   InternalApiPort:
276     type: OS::TripleO::Compute::Ports::InternalApiPort
277     properties:
278       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
279       IPPool: {get_param: NovaComputeIPs}
280       NodeIndex: {get_param: NodeIndex}
281
282   StoragePort:
283     type: OS::TripleO::Compute::Ports::StoragePort
284     properties:
285       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
286       IPPool: {get_param: NovaComputeIPs}
287       NodeIndex: {get_param: NodeIndex}
288
289   StorageMgmtPort:
290     type: OS::TripleO::Compute::Ports::StorageMgmtPort
291     properties:
292       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
293       IPPool: {get_param: NovaComputeIPs}
294       NodeIndex: {get_param: NodeIndex}
295
296   TenantPort:
297     type: OS::TripleO::Compute::Ports::TenantPort
298     properties:
299       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
300       IPPool: {get_param: NovaComputeIPs}
301       NodeIndex: {get_param: NodeIndex}
302
303   ManagementPort:
304     type: OS::TripleO::Compute::Ports::ManagementPort
305     properties:
306       ControlPlaneIP: {get_attr: [NovaCompute, networks, ctlplane, 0]}
307       IPPool: {get_param: NovaComputeIPs}
308       NodeIndex: {get_param: NodeIndex}
309
310   NetIpMap:
311     type: OS::TripleO::Network::Ports::NetIpMap
312     properties:
313       ControlPlaneIp: {get_attr: [NovaCompute, networks, ctlplane, 0]}
314       ExternalIp: {get_attr: [ExternalPort, ip_address]}
315       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
316       ExternalIpUri: {get_attr: [ExternalPort, ip_address_uri]}
317       InternalApiIp: {get_attr: [InternalApiPort, ip_address]}
318       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
319       InternalApiIpUri: {get_attr: [InternalApiPort, ip_address_uri]}
320       StorageIp: {get_attr: [StoragePort, ip_address]}
321       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
322       StorageIpUri: {get_attr: [StoragePort, ip_address_uri]}
323       StorageMgmtIp: {get_attr: [StorageMgmtPort, ip_address]}
324       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
325       StorageMgmtIpUri: {get_attr: [StorageMgmtPort, ip_address_uri]}
326       TenantIp: {get_attr: [TenantPort, ip_address]}
327       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
328       TenantIpUri: {get_attr: [TenantPort, ip_address_uri]}
329       ManagementIp: {get_attr: [ManagementPort, ip_address]}
330       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
331       ManagementIpUri: {get_attr: [ManagementPort, ip_address_uri]}
332
333   NetworkConfig:
334     type: OS::TripleO::Compute::Net::SoftwareConfig
335     properties:
336       ControlPlaneIp: {get_attr: [NovaCompute, networks, ctlplane, 0]}
337       ExternalIpSubnet: {get_attr: [ExternalPort, ip_subnet]}
338       InternalApiIpSubnet: {get_attr: [InternalApiPort, ip_subnet]}
339       StorageIpSubnet: {get_attr: [StoragePort, ip_subnet]}
340       StorageMgmtIpSubnet: {get_attr: [StorageMgmtPort, ip_subnet]}
341       TenantIpSubnet: {get_attr: [TenantPort, ip_subnet]}
342       ManagementIpSubnet: {get_attr: [ManagementPort, ip_subnet]}
343
344   NetworkDeployment:
345     type: OS::TripleO::SoftwareDeployment
346     properties:
347       name: NetworkDeployment
348       config: {get_resource: NetworkConfig}
349       server: {get_resource: NovaCompute}
350       actions: {get_param: NetworkDeploymentActions}
351       input_values:
352         bridge_name: {get_param: NeutronPhysicalBridge}
353         interface_name: {get_param: NeutronPublicInterface}
354
355   NovaComputeConfig:
356     type: OS::Heat::StructuredConfig
357     properties:
358       group: os-apply-config
359       config:
360         hiera:
361           hierarchy:
362             - '"%{::uuid}"'
363             - heat_config_%{::deploy_config_name}
364             - compute_extraconfig
365             - extraconfig
366             - service_names
367             - service_configs
368             - compute
369             - ceph_cluster # provided by CephClusterConfig
370             - all_nodes # provided by allNodesConfig
371             - '"%{::osfamily}"'
372             - neutron_bigswitch_data # Optionally provided by ComputeExtraConfigPre
373             - cisco_n1kv_data  # Optionally provided by ComputeExtraConfigPre
374             - nova_nuage_data  # Optionally provided by ComputeExtraConfigPre
375             - midonet_data # Optionally provided by AllNodesExtraConfig
376             - neutron_opencontrail_data  # Optionally provided by ComputeExtraConfigPre
377           merge_behavior: deeper
378           datafiles:
379             service_names:
380               mapped_data:
381                 service_names: {get_param: ServiceNames}
382             service_configs:
383               mapped_data:
384                 map_replace:
385                   - {get_param: ServiceConfigSettings}
386                   - values: {get_attr: [NetIpMap, net_ip_map]}
387             compute_extraconfig:
388               mapped_data: {get_param: NovaComputeExtraConfig}
389             extraconfig:
390               mapped_data: {get_param: ExtraConfig}
391             compute:
392               mapped_data:
393                 cinder_enable_nfs_backend: {get_input: cinder_enable_nfs_backend}
394                 nova::use_ipv6: {get_input: nova_ipv6}
395                 nova::debug: {get_input: debug}
396                 nova::rabbit_userid: {get_input: rabbit_username}
397                 nova::rabbit_password: {get_input: rabbit_password}
398                 nova::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
399                 nova::rabbit_port: {get_input: rabbit_client_port}
400                 nova::upgrade_level_compute: {get_input: upgrade_level_nova_compute}
401                 nova_compute_driver: {get_input: nova_compute_driver}
402                 # TODO(emilien): move libvirt & migration parameters in libvirt profile
403                 # used to deploy libvirt/kvm dependencies:
404                 nova::compute::libvirt::services::libvirt_virt_type: {get_input: nova_compute_libvirt_type}
405                 # used to configured nova.conf:
406                 nova::compute::libvirt::libvirt_virt_type: {get_input: nova_compute_libvirt_type}
407                 nova::compute::neutron::libvirt_vif_driver: {get_input: nova_compute_libvirt_vif_driver}
408                 nova_api_host: {get_input: nova_api_host}
409                 nova::compute::vncproxy_host: {get_input: nova_public_ip}
410                 nova::compute::rbd::ephemeral_storage: {get_input: nova_enable_rbd_backend}
411                 # TUNNELLED mode provides a security enhancement when using shared storage but is not
412                 # supported when not using shared storage.
413                 # See https://bugzilla.redhat.com/show_bug.cgi?id=1301986#c12
414                 # In future versions of QEMU (2.6, mostly), Dan's native encryption
415                 # work will obsolete the need to use TUNNELLED transport mode.
416                 nova::migration::live_migration_tunnelled: {get_input: nova_enable_rbd_backend}
417                 rbd_persistent_storage: {get_input: cinder_enable_rbd_backend}
418                 nova_password: {get_input: nova_password}
419                 nova::compute::vncserver_proxyclient_address: {get_input: nova_vnc_proxyclient_address}
420                 nova::vncproxy::common::vncproxy_protocol: {get_input: nova_vncproxy_protocol}
421                 nova::vncproxy::common::vncproxy_host: {get_input: nova_vncproxy_host}
422                 nova::vncproxy::common::vncproxy_port: {get_input: nova_vncproxy_port}
423                 nova::network::neutron::neutron_ovs_bridge: {get_input: nova_ovs_bridge}
424                 nova::network::neutron::security_group_api: {get_input: nova_security_group_api}
425                 ceilometer::debug: {get_input: debug}
426                 ceilometer::rabbit_userid: {get_input: rabbit_username}
427                 ceilometer::rabbit_password: {get_input: rabbit_password}
428                 ceilometer::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
429                 ceilometer::rabbit_port: {get_input: rabbit_client_port}
430                 ceilometer::telemetry_secret: {get_input: ceilometer_metering_secret}
431                 ceilometer::agent::auth::auth_password: {get_input: ceilometer_password}
432                 ceilometer::agent::auth::auth_url: {get_input: ceilometer_agent_auth_url}
433                 nova::glance_api_servers: {get_input: glance_api_servers}
434                 neutron::debug: {get_input: debug}
435                 neutron::rabbit_password: {get_input: rabbit_password}
436                 neutron::rabbit_user: {get_input: rabbit_username}
437                 neutron::rabbit_use_ssl: {get_input: rabbit_client_use_ssl}
438                 neutron::rabbit_port: {get_input: rabbit_client_port}
439                 neutron::agents::ml2::ovs::local_ip: {get_input: neutron_local_ip}
440
441                 nova::network::neutron::neutron_password: {get_input: neutron_password}
442                 nova::network::neutron::neutron_url: {get_input: neutron_internal_url}
443                 nova::network::neutron::neutron_auth_url: {get_input: neutron_auth_url}
444                 keystone_public_api_virtual_ip: {get_input: keystone_vip}
445                 admin_password: {get_input: admin_password}
446                 tripleo::packages::enable_install: {get_input: enable_package_install}
447                 tripleo::packages::enable_upgrade: {get_input: enable_package_upgrade}
448
449   NovaComputeDeployment:
450     type: OS::TripleO::SoftwareDeployment
451     depends_on: NetworkDeployment
452     properties:
453       name: NovaComputeDeployment
454       config: {get_resource: NovaComputeConfig}
455       server: {get_resource: NovaCompute}
456       input_values:
457         cinder_enable_nfs_backend: {get_param: CinderEnableNfsBackend}
458         debug: {get_param: Debug}
459         nova_compute_driver: {get_param: NovaComputeDriver}
460         nova_compute_libvirt_type: {get_param: NovaComputeLibvirtType}
461         nova_compute_libvirt_vif_driver: {get_param: NovaComputeLibvirtVifDriver}
462         nova_public_ip: {get_param: NovaPublicIP}
463         nova_api_host: {get_param: NovaApiHost}
464         nova_password: {get_param: NovaPassword}
465         nova_enable_rbd_backend: {get_param: NovaEnableRbdBackend}
466         nova_ipv6: {get_param: NovaIPv6}
467         cinder_enable_rbd_backend: {get_param: CinderEnableRbdBackend}
468         nova_vnc_proxyclient_address: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, NovaVncProxyNetwork]}]}
469         nova_vncproxy_protocol: {get_param: [EndpointMap, NovaVNCProxyPublic, protocol]}
470         # Remove brackets that may come if the IP address is IPv6.
471         # For DNS names and IPv4, this will just get the NovaVNCProxyPublic value
472         nova_vncproxy_host:
473           str_replace:
474             template: {get_param: [EndpointMap, NovaVNCProxyPublic, host]}
475             params:
476               '[': ''
477               ']': ''
478         nova_vncproxy_port: {get_param: [EndpointMap, NovaVNCProxyPublic, port]}
479         nova_ovs_bridge: {get_param: NovaOVSBridge}
480         nova_security_group_api: {get_param: NovaSecurityGroupAPI}
481         upgrade_level_nova_compute: {get_param: UpgradeLevelNovaCompute}
482         ceilometer_metering_secret: {get_param: CeilometerMeteringSecret}
483         ceilometer_password: {get_param: CeilometerPassword}
484         ceilometer_agent_auth_url: {get_param: [EndpointMap, KeystoneInternal, uri_no_suffix]}
485         glance_api_servers: {get_param: [EndpointMap, GlanceInternal, uri]}
486         neutron_local_ip: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, NeutronTenantNetwork]}]}
487         neutron_password: {get_param: NeutronPassword}
488         neutron_internal_url: {get_param: [EndpointMap, NeutronInternal, uri]}
489         neutron_auth_url: {get_param: [EndpointMap, KeystoneV3Admin, uri]}
490         keystone_vip: {get_param: KeystonePublicApiVirtualIP}
491         admin_password: {get_param: AdminPassword}
492         rabbit_username: {get_param: RabbitUserName}
493         rabbit_password: {get_param: RabbitPassword}
494         rabbit_client_use_ssl: {get_param: RabbitClientUseSSL}
495         rabbit_client_port: {get_param: RabbitClientPort}
496         enable_package_install: {get_param: EnablePackageInstall}
497         enable_package_upgrade: {get_attr: [UpdateDeployment, update_managed_packages]}
498
499   # Resource for site-specific injection of root certificate
500   NodeTLSCAData:
501     depends_on: NovaComputeDeployment
502     type: OS::TripleO::NodeTLSCAData
503     properties:
504       server: {get_resource: NovaCompute}
505
506   # Hook for site-specific additional pre-deployment config, e.g extra hieradata
507   ComputeExtraConfigPre:
508     depends_on: NovaComputeDeployment
509     type: OS::TripleO::ComputeExtraConfigPre
510     properties:
511         server: {get_resource: NovaCompute}
512
513   # Hook for site-specific additional pre-deployment config,
514   # applying to all nodes, e.g node registration/unregistration
515   NodeExtraConfig:
516     depends_on: [ComputeExtraConfigPre, NodeTLSCAData]
517     type: OS::TripleO::NodeExtraConfig
518     properties:
519         server: {get_resource: NovaCompute}
520
521   UpdateConfig:
522     type: OS::TripleO::Tasks::PackageUpdate
523
524   UpdateDeployment:
525     type: OS::Heat::SoftwareDeployment
526     properties:
527       name: UpdateDeployment
528       config: {get_resource: UpdateConfig}
529       server: {get_resource: NovaCompute}
530       input_values:
531         update_identifier:
532           get_param: UpdateIdentifier
533
534 outputs:
535   ip_address:
536     description: IP address of the server in the ctlplane network
537     value: {get_attr: [NovaCompute, networks, ctlplane, 0]}
538   external_ip_address:
539     description: IP address of the server in the external network
540     value: {get_attr: [ExternalPort, ip_address]}
541   internal_api_ip_address:
542     description: IP address of the server in the internal_api network
543     value: {get_attr: [InternalApiPort, ip_address]}
544   storage_ip_address:
545     description: IP address of the server in the storage network
546     value: {get_attr: [StoragePort, ip_address]}
547   storage_mgmt_ip_address:
548     description: IP address of the server in the storage_mgmt network
549     value: {get_attr: [StorageMgmtPort, ip_address]}
550   tenant_ip_address:
551     description: IP address of the server in the tenant network
552     value: {get_attr: [TenantPort, ip_address]}
553   management_ip_address:
554     description: IP address of the server in the management network
555     value: {get_attr: [ManagementPort, ip_address]}
556   hostname:
557     description: Hostname of the server
558     value: {get_attr: [NovaCompute, name]}
559   hosts_entry:
560     description: >
561       Server's IP address and hostname in the /etc/hosts format
562     value:
563       str_replace:
564         template: |
565           PRIMARYIP PRIMARYHOST.DOMAIN PRIMARYHOST
566           EXTERNALIP EXTERNALHOST.DOMAIN EXTERNALHOST
567           INTERNAL_APIIP INTERNAL_APIHOST.DOMAIN INTERNAL_APIHOST
568           STORAGEIP STORAGEHOST.DOMAIN STORAGEHOST
569           STORAGE_MGMTIP STORAGE_MGMTHOST.DOMAIN STORAGE_MGMTHOST
570           TENANTIP TENANTHOST.DOMAIN TENANTHOST
571           MANAGEMENTIP MANAGEMENTHOST.DOMAIN MANAGEMENTHOST
572         params:
573           PRIMARYIP: {get_attr: [NetIpMap, net_ip_map, {get_param: [ServiceNetMap, ComputeHostnameResolveNetwork]}]}
574           DOMAIN: {get_param: CloudDomain}
575           PRIMARYHOST: {get_attr: [NovaCompute, name]}
576           EXTERNALIP: {get_attr: [ExternalPort, ip_address]}
577           EXTERNALHOST:
578             list_join:
579             - '.'
580             - - {get_attr: [NovaCompute, name]}
581               - external
582           INTERNAL_APIIP: {get_attr: [InternalApiPort, ip_address]}
583           INTERNAL_APIHOST:
584             list_join:
585             - '.'
586             - - {get_attr: [NovaCompute, name]}
587               - internalapi
588           STORAGEIP: {get_attr: [StoragePort, ip_address]}
589           STORAGEHOST:
590             list_join:
591             - '.'
592             - - {get_attr: [NovaCompute, name]}
593               - storage
594           STORAGE_MGMTIP: {get_attr: [StorageMgmtPort, ip_address]}
595           STORAGE_MGMTHOST:
596             list_join:
597             - '.'
598             - - {get_attr: [NovaCompute, name]}
599               - storagemgmt
600           TENANTIP: {get_attr: [TenantPort, ip_address]}
601           TENANTHOST:
602             list_join:
603             - '.'
604             - - {get_attr: [NovaCompute, name]}
605               - tenant
606           MANAGEMENTIP: {get_attr: [ManagementPort, ip_address]}
607           MANAGEMENTHOST:
608             list_join:
609             - '.'
610             - - {get_attr: [NovaCompute, name]}
611               - management
612   nova_server_resource:
613     description: Heat resource handle for the Nova compute server
614     value:
615       {get_resource: NovaCompute}