Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Synchronise master with upstream #106

Open
wants to merge 9 commits into
base: stackhpc/master
Choose a base branch
from
1 change: 1 addition & 0 deletions devstack/plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ function ngs_configure_tempest {
if [ $GENERIC_SWITCH_USER_MAX_SESSIONS -gt 0 ]; then
iniset $TEMPEST_CONFIG ngs port_dlm_concurrency $(($GENERIC_SWITCH_USER_MAX_SESSIONS * 2))
fi
iniset $TEMPEST_CONFIG baremetal_feature_enabled trunks_supported True
}

# check for service enabled
Expand Down
81 changes: 75 additions & 6 deletions networking_generic_switch/devices/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ def __init__(self, device_cfg, device_name=""):

self._validate_network_name_format()

@property
def support_trunk_on_ports(self):
return False

@property
def support_trunk_on_bond_ports(self):
return False

def _validate_network_name_format(self):
"""Validate the network name format configuration option."""
network_name_format = self.ngs_config['ngs_network_name_format']
Expand Down Expand Up @@ -223,17 +231,78 @@ def del_network(self, segmentation_id, network_id):
pass

@abc.abstractmethod
def plug_port_to_network(self, port_id, segmentation_id):
def plug_port_to_network(self, port_id, segmentation_id,
trunk_details=None):
"""Plug port into network.

:param port_id: Then name of the switch interface
:param segmentation_id: VLAN identifier of the network used as access
or native VLAN for port.

:param trunk_details: trunk information if port is a part of trunk
"""
pass

@abc.abstractmethod
def delete_port(self, port_id, segmentation_id):
def delete_port(self, port_id, segmentation_id, trunk_details=None):
"""Delete port from specific network.

:param port_id: Then name of the switch interface
:param segmentation_id: VLAN identifier of the network used as access
or native VLAN for port.

:param trunk_details: trunk information if port is a part of trunk
"""
pass

def plug_bond_to_network(self, bond_id, segmentation_id):
def plug_bond_to_network(self, bond_id, segmentation_id,
trunk_details=None):
"""Plug bond port into network.

:param port_id: Then name of the switch interface
:param segmentation_id: VLAN identifier of the network used as access
or native VLAN for port.

:param trunk_details: trunk information if port is a part of trunk
"""
kwargs = {}
if trunk_details:
kwargs["trunk_details"] = trunk_details
# Fall back to interface method.
return self.plug_port_to_network(bond_id, segmentation_id)
return self.plug_port_to_network(bond_id, segmentation_id, **kwargs)

def unplug_bond_from_network(self, bond_id, segmentation_id):
def unplug_bond_from_network(self, bond_id, segmentation_id,
trunk_details=None):
"""Unplug bond port from network.

:param port_id: Then name of the switch interface
:param segmentation_id: VLAN identifier of the network used as access
or native VLAN for port.

:param trunk_details: trunk information if port is a part of trunk
"""
kwargs = {}
if trunk_details:
kwargs["trunk_details"] = trunk_details
# Fall back to interface method.
return self.delete_port(bond_id, segmentation_id)
return self.delete_port(bond_id, segmentation_id, **kwargs)

def add_subports_on_trunk(self, binding_profile, port_id, subports):
"""Allow subports on trunk

:param binding_profile: Binding profile of parent port
:param port_id: The name of the switch port from
Local Link Information
:param subports: List with subports objects.
"""
pass

def del_subports_on_trunk(self, binding_profile, port_id, subports):
"""Allow subports on trunk

:param binding_profile: Binding profile of parent port
:param port_id: The name of the switch port from
Local Link Information
:param subports: List with subports objects.
"""
pass
Loading