Merge "NSX-v3: Fix add router interface for VLAN downlinks"

This commit is contained in:
Zuul 2021-07-19 15:15:45 +00:00 committed by Gerrit Code Review
commit a25f9b246a

View File

@ -2571,6 +2571,13 @@ class NsxV3Plugin(nsx_plugin_common.NsxPluginV3Base,
resource_type = (None if overlay_net else
nsxlib_consts.LROUTERPORT_CENTRALIZED)
# Centralized router port require a service router
if resource_type == nsxlib_consts.LROUTERPORT_CENTRALIZED:
if not self.verify_sr_at_backend(
context, router_id):
self.create_service_router(
context, router_id, router=router_db)
# Validate the TZ of the new subnet match the one of the router
tier0_uuid = self._get_tier0_uuid_by_router(context.elevated(),
router_db)