diff options
author | Steven Hardy <shardy@redhat.com> | 2015-10-07 17:34:25 +0100 |
---|---|---|
committer | Steven Hardy <shardy@redhat.com> | 2015-10-19 18:33:55 +0100 |
commit | 0d191cb5d626c19ea9496a4f0a1423f2ff3ed5c9 (patch) | |
tree | e18b01cef4ff003d144c0943cb57afc56f60f713 | |
parent | 8585f8d3fe57780d2c6426f27406de373972cc25 (diff) |
Allow ctlplane network or ID, and default to "ctlplane"
Currently you always have to pass the ctlplane ID because we're still
using the deprecated network_id property for the neutron port resource.
Since Juno, heat has supported a "network" property, which is used
elsewhere, e.g the nested port stacks, so switch to using it in the
overcloud-without-mergepy template, and flip the default to a more
useful "ctlplane" vs an empty string.
This means the stack create should just work on commonly documented
deployments without requiring any parameter.
Change-Id: Ifcea36d26b795c5e8b80accd8112e23b254127be
-rw-r--r-- | overcloud-without-mergepy.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/overcloud-without-mergepy.yaml b/overcloud-without-mergepy.yaml index 629cf817..9c915c4a 100644 --- a/overcloud-without-mergepy.yaml +++ b/overcloud-without-mergepy.yaml @@ -120,9 +120,9 @@ parameters: type: string default: "datacentre:br-ex" NeutronControlPlaneID: - default: '' + default: 'ctlplane' type: string - description: Neutron ID for ctlplane network. + description: Neutron ID or name for ctlplane network. NeutronEnableTunnelling: type: string default: "True" @@ -1107,7 +1107,7 @@ resources: depends_on: Networks properties: name: control_virtual_ip - network_id: {get_param: NeutronControlPlaneID} + network: {get_param: NeutronControlPlaneID} fixed_ips: {get_param: ControlFixedIPs} replacement_policy: AUTO |