From a3a88cd3c0c9491877c4278753ac9988a121abbb Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Fri, 29 May 2015 12:07:44 -0400 Subject: Add PortName to ports stacks For VIP ports we set an explicit name on the ports. This patch adds an optional PortName parameter to the ports objects which can be used to specify a name. Change-Id: Iad0f5e4cfc31a931dbb574d9e589570125e9465c --- network/ports/tenant.yaml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'network/ports/tenant.yaml') diff --git a/network/ports/tenant.yaml b/network/ports/tenant.yaml index 1957c41b..aae12d46 100644 --- a/network/ports/tenant.yaml +++ b/network/ports/tenant.yaml @@ -8,6 +8,10 @@ parameters: description: Name of the tenant neutron network default: tenant type: string + PortName: + description: Name of the port + default: '' + type: string ControlPlaneIP: # Here for compatability with noop.yaml description: IP address on the control plane type: string @@ -18,6 +22,7 @@ resources: type: OS::Neutron::Port properties: network: {get_param: TenantNetName} + name: {get_param: PortName} replacement_policy: AUTO outputs: -- cgit 1.2.3-korg