diff options
author | Steve Baker <sbaker@redhat.com> | 2014-07-18 12:55:31 +1200 |
---|---|---|
committer | Steve Baker <sbaker@redhat.com> | 2014-08-04 08:57:52 +1200 |
commit | 02772ba2877b9f6d427c6fd760bf19d6334c68a8 (patch) | |
tree | 7245a75828129f9eba3812e6053afe5af6ffdf68 /nova-compute-instance.yaml | |
parent | beca15dec5265783047d5df210b270ed3d77dd4b (diff) |
Convert Fn::Select to extended get_attr
Overcloud bootstrap_nodeid is now specified by parameter
BootStrapNodeResource with default value controller0.
This avoids the need to use Fn::Select on the mergy.py
built list of controllers to specify the first controller.
Change-Id: Id9cfeab50b90ceeeae51ea0e35997b7495b28cc4
Partial-Blueprint: tripleo-juno-remove-mergepy
Diffstat (limited to 'nova-compute-instance.yaml')
-rw-r--r-- | nova-compute-instance.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova-compute-instance.yaml b/nova-compute-instance.yaml index d8b3a712..597b42b2 100644 --- a/nova-compute-instance.yaml +++ b/nova-compute-instance.yaml @@ -207,7 +207,7 @@ resources: neutron_flat_networks: {get_param: NeutronFlatNetworks} neutron_host: {get_param: NeutronHost} neutron_dsn: {get_param: NeutronDSN} - neutron_local_ip: {"Fn::Select": [ 0, "Fn::Select": [ ctlplane, { get_attr: [ NovaCompute0, networks ]}]]} + neutron_local_ip: {get_attr: [NovaCompute0, networks, ctlplane, 0]} neutron_tenant_network_type: {get_param: NeutronNetworkType} neutron_network_vlan_ranges: {get_param: NeutronNetworkVLANRanges} neutron_bridge_mappings: {get_param: NeutronBridgeMappings} |