diff options
author | Tim Rozet <trozet@redhat.com> | 2017-12-13 11:50:47 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-12-14 14:29:31 +0000 |
commit | c4e60fbca8cefc5c81d221c4faa55fed09f5e70c (patch) | |
tree | f378541e1e9efc2fd1245897d072c9a4ffac2c6d | |
parent | a59619ffee744562eaea49d11c51ccc8df40b7af (diff) |
Enables br-ex on controllers in SFC scenario
ODL's current behavior is to select a node to serve as the routing/L3
node in a deployment. The selection is random, and it could end up
choosing a control node. Therefore the control node needs to have
external network connectivity so adding br-ex to the controller which
will enable this via default ProviderMappings.
JIRA: APEX-558
Change-Id: Ie3044e5711ba62d73b83d69cde369e7452958844
Signed-off-by: Tim Rozet <trozet@redhat.com>
(cherry picked from commit 8b280f8faf98b3f69435ceab3d045aaac49ecb3e)
-rw-r--r-- | apex/overcloud/config.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apex/overcloud/config.py b/apex/overcloud/config.py index a7f7d848..b0cbb18b 100644 --- a/apex/overcloud/config.py +++ b/apex/overcloud/config.py @@ -66,9 +66,6 @@ def create_nic_template(network_settings, deploy_settings, role, template_dir, nets['tenant']['nic_mapping'][role]['interface-options'] =\ ds['performance'][role.title()]['vpp']['interface-options'] - if role == 'controller' and ds.get('sfc', None): - ext_net = 'interface' - template_output = template.render( nets=nets, role=role, |