diff options
author | Tim Rozet <trozet@redhat.com> | 2016-01-27 15:45:08 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2016-01-27 15:45:08 -0500 |
commit | cc5578d53c28b80a3a1449b036b714c8647c11ae (patch) | |
tree | e53b57dbf5ffcfc8aacdd427949ab1d7945cef4a /ci | |
parent | d35de18275874d61634b3faecaa54011110f9b94 (diff) |
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 <trozet@redhat.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/deploy.sh | 4 |
1 files changed, 3 insertions, 1 deletions
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 |