aboutsummaryrefslogtreecommitdiffstats
path: root/patches/opnfv-fuel/0010-Append-offloading-modes-and-MTU-to-interfaces.patch
blob: 175176375c33da8cdc52956ffe255b25cc075bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
: Copyright (c) 2017 Enea AB and others.
:
: All rights reserved. This program and the accompanying materials
: are made available under the terms of the Apache License, Version 2.0
: which accompanies this distribution, and is available at
: http://www.apache.org/licenses/LICENSE-2.0
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
From: Catalina Focsa <catalina.focsa@enea.com>
Date: Fri, 26 May 2017 15:05:17 +0200
Subject: [PATCH] Append offloading modes and MTU to interfaces

Select information regarding offloading modes
and MTU and append it to the interface properties key,
for each defined interface.

JIRA: https://jira.opnfv.org/browse/ARMBAND-199
JIRA: https://jira.opnfv.org/browse/ARMBAND-251
JIRA: https://jira.opnfv.org/browse/ARMBAND-253

Signed-off-by: Catalina Focsa <catalina.focsa@enea.com>
---
 deploy/reap.py | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/deploy/reap.py b/deploy/reap.py
index fe6bebf..56b01d9 100644
--- a/deploy/reap.py
+++ b/deploy/reap.py
@@ -358,6 +358,13 @@ class Reap(object):
                     pxe_mac = interface['mac']
             if networks:
                 interface_config[interface['name']] = networks
+                dict_prop = {'mtu': {k:v for k, v in \
+                    interface['attributes']['mtu'].items() if k == 'value'}}
+                dict_prop.update({'offloading': {k:v for k, v in \
+                    interface['attributes']['offloading'].items() \
+                    if k == 'modes'}})
+                interface_config[interface['name']].append\
+                    ({'interface_properties': dict_prop})
         return interface_config, pxe_mac

     def read_yaml(self, yaml_file):