From cc5578d53c28b80a3a1449b036b714c8647c11ae Mon Sep 17 00:00:00 2001 From: Tim Rozet Date: Wed, 27 Jan 2016 15:45:08 -0500 Subject: Allows ONOS to use compute nodes with br-ex no IP ONOS needs the capability to have br-ex on compute nodes with no IP for L3 functionality to work correctly on baremetal. This patch allows that capability, and makes it default behavior (sdn_l3 true). If desired, a user can set sdn_l3 to false, and compute nodes public interface will be a regular interface with no IP for ONOS deployments. JIRA: APEX-64 Change-Id: I578b946edbddf7fc9c29363c78fec2c3ada48cf6 Signed-off-by: Tim Rozet --- ci/deploy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ci') diff --git a/ci/deploy.sh b/ci/deploy.sh index 949db04f..507e62aa 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -660,7 +660,9 @@ function configure_network_environment { # check for ODL L3 if [ ${deploy_options_array['sdn_l3']} == 'true' ]; then nic_ext+=_br-ex - elif [ ${deploy_options_array['sdn_controller']} == 'onos' ]; then + fi + + if [ ${deploy_options_array['sdn_controller']} == 'onos' ]; then nic_ext+=_no-public-ip fi -- cgit 1.2.3-korg