diff options
author | Feng Pan <fpan@redhat.com> | 2017-03-19 13:07:50 -0400 |
---|---|---|
committer | Feng Pan <fpan@redhat.com> | 2017-04-11 00:01:24 +0000 |
commit | 8f132fde05517f2c662c9bc945d1712a03eb2a1b (patch) | |
tree | 4c9aeee82aee5e335b99796ed4b45ea4372dc1d9 /lib | |
parent | 1ed4b476cc7569b63567b73badaee578b3ed8fc5 (diff) |
Add VPP interface options support
Interface options is needed for nosdn-fdio scenario to disable
vlan strip offloading for enic.
Change-Id: I7d7e3d7e6e0c822a13113911a41a3d076ecbd509
Signed-off-by: Feng Pan <fpan@redhat.com>
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/python/apex_python_utils.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/apex_python_utils.py b/lib/python/apex_python_utils.py index 830af360..1f49d474 100755 --- a/lib/python/apex_python_utils.py +++ b/lib/python/apex_python_utils.py @@ -123,6 +123,10 @@ def build_nic_template(args): if ds['sdn_l3']: nets['external'][0]['nic_mapping'][args.role]['uio-driver'] =\ ds['performance'][args.role.title()]['vpp']['uio-driver'] + if ds.get('performance', {}).get(args.role.title(), {}).get('vpp', {})\ + .get('interface-options'): + nets['tenant']['nic_mapping'][args.role]['interface-options'] =\ + ds['performance'][args.role.title()]['vpp']['interface-options'] print(template.render(nets=nets, role=args.role, |