Merge "Change supported vif type in Linux Bridge."

This commit is contained in:
Jenkins 2017-05-31 18:44:11 +00:00 committed by Gerrit Code Review
commit ed7fd6edb2
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,8 @@ class LinuxBridgeDriver(base.DriverBase):
def create():
return LinuxBridgeDriver(
name='linuxbridge',
vif_types=[portbindings.VIF_TYPE_BRIDGE],
vif_types=[portbindings.VIF_TYPE_BRIDGE,
portbindings.VIF_TYPE_TAP],
vnic_types=[portbindings.VNIC_NORMAL],
supported_rules=SUPPORTED_RULES,
requires_rpc_notifications=True)