From 668e52b657e134d27dbd03b473dc927daa58dda6 Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Sat, 16 Jan 2016 22:50:36 -0500 Subject: Adds ODL L3 and external network support on compute nodes Adds support for ODL L3 which uses DVR (distributed virtual routing). Due to DVR compute nodes must have br-ex. In addition, neutron must force metadata via dhcp agent, since there is no neutron L3 agent running. ODL L3 runs as custom plugin to neutron. Also adds support for configuring IP on public NIC now by default. This is needed for ONOS deployment, and access via public interface. Change-Id: I5df0e49bd903efacf8c87486da27576b01ce5779 Signed-off-by: Tim Rozet --- build/nics/compute_private_storage.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'build/nics/compute_private_storage.yaml') diff --git a/build/nics/compute_private_storage.yaml b/build/nics/compute_private_storage.yaml index d140871f..fc51cfdd 100644 --- a/build/nics/compute_private_storage.yaml +++ b/build/nics/compute_private_storage.yaml @@ -48,6 +48,10 @@ parameters: ControlPlaneDefaultRoute: # Override this via parameter_defaults description: The subnet CIDR of the control plane network. type: string + ExternalInterfaceDefaultRoute: + default: '10.0.0.1' + description: default route for the external network + type: string DnsServers: # Override this via parameter_defaults default: [] description: A list of DNS servers (2 max for some implementations) that will be added to resolv.conf. @@ -87,6 +91,17 @@ resources: addresses: - ip_netmask: {get_param: TenantIpSubnet} + - + type: interface + name: nic3 + use_dhcp: false + addresses: + - + ip_netmask: {get_param: ExternalIpSubnet} + routes: + - + ip_netmask: 0.0.0.0/0 + next_hop: {get_param: ExternalInterfaceDefaultRoute} - type: interface name: nic4 -- cgit 1.2.3-korg