From: Akshay Singhal Date: Fri, 30 Sep 2016 18:40:14 +0000 (-0400) Subject: Bug 72 - Update rift2openmano to support e1000 virtual interfaces X-Git-Tag: v1.0.0~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=c5aabae86ae600247433bf24c188f164701536d9;hp=-c;p=osm%2FSO.git Bug 72 - Update rift2openmano to support e1000 virtual interfaces Signed-off-by: Akshay Singhal --- c5aabae86ae600247433bf24c188f164701536d9 diff --git a/models/openmano/python/rift/openmano/rift2openmano.py b/models/openmano/python/rift/openmano/rift2openmano.py index 3edbbb01..e8ad3e53 100755 --- a/models/openmano/python/rift/openmano/rift2openmano.py +++ b/models/openmano/python/rift/openmano/rift2openmano.py @@ -25,6 +25,11 @@ import sys import tempfile import yaml +import gi +gi.require_version('RwYang', '1.0') +gi.require_version('RwVnfdYang', '1.0') +gi.require_version('RwNsdYang', '1.0') + from gi.repository import ( RwYang, RwVnfdYang, @@ -356,11 +361,19 @@ def rift2openmano_vnfd(rift_vnfd): def rift2openmano_if_type(rift_type): if rift_type == "OM_MGMT": return "mgmt" - elif rift_type == "VIRTIO": + elif rift_type == "VIRTIO" or rift_type == "E1000": return "bridge" else: return "data" + def rift2openmano_vif(rift_type): + if rift_type == "VIRTIO": + return "virtio" + elif rift_type == "E1000": + return "e1000" + else: + raise ValueError("VDU Virtual Interface type {} not supported".format(rift_type)) + # Add all external connections for cp in rift_vnfd.cps: # Find the VDU and and external interface for this connection point @@ -465,7 +478,11 @@ def rift2openmano_vnfd(rift_vnfd): if int_if.virtual_interface.has_field("vpci"): intf["vpci"] = int_if.virtual_interface.vpci - if int_if.virtual_interface.type_yang in ["VIRTIO", "OM_MGMT"]: + if int_if.virtual_interface.type_yang in ["VIRTIO", "E1000"]: + intf["model"] = rift2openmano_vif(int_if.virtual_interface.type_yang) + vnfc["bridge-ifaces"].append(intf) + + elif int_if.virtual_interface.type_yang in ["OM_MGMT"]: vnfc["bridge-ifaces"].append(intf) elif int_if.virtual_interface.type_yang == "SR-IOV":