diff options
author | Tim Rozet <trozet@redhat.com> | 2017-12-13 11:50:47 -0500 |
---|---|---|
committer | Tim Rozet <trozet@redhat.com> | 2017-12-13 11:50:47 -0500 |
commit | 8b280f8faf98b3f69435ceab3d045aaac49ecb3e (patch) | |
tree | fdea7cb4bc8467616892ec9b4809e0b6e1bbdaee | |
parent | 5e958e5488338dca587e9ed1b694c1719939d739 (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>
-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, |