From 9313e18f302aafaa1cbe92ef59499af6d2074e1f Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Sun, 11 Dec 2016 08:16:36 -0500 Subject: Add "deployed server" fake neutron ports This patch swaps out the noop ctlplane port for a more proper fake neutron port stack. This stack is a swap in for the OS::Neutron::Port heat resource and can be controlled via the DeployedServerPortMap parameter. By relying on - naming conventions in the map we can map IPs to specific servers without using the Neutron API. This will allow us to inject IP information into the Heat stack within the new t-h-t undercloud installer which currently does not run a Neutron service. Change-Id: I29fbc720c3d582cbb94385e65e4b64b101f7eac9 --- deployed-server/ctlplane-port.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 deployed-server/ctlplane-port.yaml (limited to 'deployed-server/ctlplane-port.yaml') diff --git a/deployed-server/ctlplane-port.yaml b/deployed-server/ctlplane-port.yaml deleted file mode 100644 index eb10fba0..00000000 --- a/deployed-server/ctlplane-port.yaml +++ /dev/null @@ -1,23 +0,0 @@ -heat_template_version: 2014-10-16 - -parameters: - Hostname: - type: string - -resources: - - ControlPlanePort: - type: OS::Neutron::Port - properties: - network: ctlplane - name: - list_join: - - '-' - - - {get_param: Hostname} - - ctlplane - - port - replacement_policy: AUTO - -outputs: - ip_address: - value: {get_attr: [ControlPlanePort, fixed_ips, 0, ip_address]} -- cgit 1.2.3-korg