
The LB VIP should be advertised by the Tier1 router only if it is on the external network. To do that, the global advertise vp flag will not be set, and instead a rule with a filter to advertise only the VIPs on the external network is added. In addition, an admin utility is added to update already existing routers with loadbalancers. Since VPNaaS also uses the router advertisement rules, its code was also updated so that each application will handle only its own rules. Change-Id: Ibfac0406a8c3009c323828cc42c96012e70cb0a9
151 lines
5.8 KiB
Python
151 lines
5.8 KiB
Python
# Copyright 2015 VMware, Inc. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from oslo_log import log as logging
|
|
|
|
from neutron_lib.callbacks import registry
|
|
from neutron_lib import context as neutron_context
|
|
|
|
from vmware_nsx.db import db as nsx_db
|
|
from vmware_nsx.services.lbaas.nsx_v3.implementation import lb_utils
|
|
from vmware_nsx.shell.admin.plugins.common import constants
|
|
from vmware_nsx.shell.admin.plugins.common import formatters
|
|
from vmware_nsx.shell.admin.plugins.common import utils as admin_utils
|
|
from vmware_nsx.shell.admin.plugins.nsxv3.resources import utils
|
|
from vmware_nsx.shell import resources as shell
|
|
from vmware_nsxlib.v3 import nsx_constants as consts
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
@admin_utils.list_handler(constants.LB_SERVICES)
|
|
@admin_utils.output_header
|
|
def nsx_list_lb_services(resource, event, trigger, **kwargs):
|
|
"""List LB services on NSX backend"""
|
|
|
|
nsxlib = utils.get_connected_nsxlib()
|
|
if not nsxlib.feature_supported(consts.FEATURE_LOAD_BALANCER):
|
|
LOG.error("This utility is not available for NSX version %s",
|
|
nsxlib.get_version())
|
|
return
|
|
|
|
lb_services = nsxlib.load_balancer.service.list()
|
|
LOG.info(formatters.output_formatter(
|
|
constants.LB_SERVICES, lb_services['results'],
|
|
['display_name', 'id', 'virtual_server_ids', 'attachment']))
|
|
return bool(lb_services)
|
|
|
|
|
|
@admin_utils.list_handler(constants.LB_VIRTUAL_SERVERS)
|
|
@admin_utils.output_header
|
|
def nsx_list_lb_virtual_servers(resource, event, trigger, **kwargs):
|
|
"""List LB virtual servers on NSX backend"""
|
|
|
|
nsxlib = utils.get_connected_nsxlib()
|
|
if not nsxlib.feature_supported(consts.FEATURE_LOAD_BALANCER):
|
|
LOG.error("This utility is not available for NSX version %s",
|
|
nsxlib.get_version())
|
|
return
|
|
|
|
lb_virtual_servers = nsxlib.load_balancer.virtual_server.list()
|
|
LOG.info(formatters.output_formatter(
|
|
constants.LB_VIRTUAL_SERVERS, lb_virtual_servers['results'],
|
|
['display_name', 'id', 'ip_address', 'pool_id']))
|
|
return bool(lb_virtual_servers)
|
|
|
|
|
|
@admin_utils.list_handler(constants.LB_POOLS)
|
|
@admin_utils.output_header
|
|
def nsx_list_lb_pools(resource, event, trigger, **kwargs):
|
|
|
|
nsxlib = utils.get_connected_nsxlib()
|
|
if not nsxlib.feature_supported(consts.FEATURE_LOAD_BALANCER):
|
|
LOG.error("This utility is not available for NSX version %s",
|
|
nsxlib.get_version())
|
|
return
|
|
|
|
lb_pools = nsxlib.load_balancer.pool.list()
|
|
LOG.info(formatters.output_formatter(
|
|
constants.LB_POOLS, lb_pools['results'],
|
|
['display_name', 'id', 'active_monitor_ids', 'members']))
|
|
return bool(lb_pools)
|
|
|
|
|
|
@admin_utils.list_handler(constants.LB_MONITORS)
|
|
@admin_utils.output_header
|
|
def nsx_list_lb_monitors(resource, event, trigger, **kwargs):
|
|
|
|
nsxlib = utils.get_connected_nsxlib()
|
|
if not nsxlib.feature_supported(consts.FEATURE_LOAD_BALANCER):
|
|
LOG.error("This utility is not available for NSX version %s",
|
|
nsxlib.get_version())
|
|
return
|
|
|
|
lb_monitors = nsxlib.load_balancer.monitor.list()
|
|
LOG.info(formatters.output_formatter(
|
|
constants.LB_MONITORS, lb_monitors['results'],
|
|
['display_name', 'id', 'resource_type']))
|
|
return bool(lb_monitors)
|
|
|
|
|
|
@admin_utils.output_header
|
|
def nsx_update_router_lb_advertisement(resource, event, trigger, **kwargs):
|
|
"""The implementation of the VIP advertisement changed.
|
|
|
|
This utility will update existing LB/routers
|
|
"""
|
|
nsxlib = utils.get_connected_nsxlib()
|
|
if not nsxlib.feature_supported(consts.FEATURE_LOAD_BALANCER):
|
|
LOG.error("This utility is not available for NSX version %s",
|
|
nsxlib.get_version())
|
|
return
|
|
|
|
# Get the list of neutron routers used by LB
|
|
lb_services = nsxlib.load_balancer.service.list()['results']
|
|
lb_routers = []
|
|
for lb_srv in lb_services:
|
|
for tag in lb_srv.get('tags', []):
|
|
if tag['scope'] == 'os-neutron-router-id':
|
|
lb_routers.append(tag['tag'])
|
|
lb_routers = set(lb_routers)
|
|
LOG.info("Going to update LB advertisement on %(num)s router(s): "
|
|
"%(routers)s",
|
|
{'num': len(lb_routers), 'routers': lb_routers})
|
|
|
|
context = neutron_context.get_admin_context()
|
|
with utils.NsxV3PluginWrapper() as plugin:
|
|
for rtr_id in lb_routers:
|
|
nsx_router_id = nsx_db.get_nsx_router_id(context.session, rtr_id)
|
|
if not nsx_router_id:
|
|
LOG.error("Router %s NSX Id was not found.", rtr_id)
|
|
continue
|
|
try:
|
|
# disable the global vip advertisement flag
|
|
plugin.nsxlib.logical_router.update_advertisement(
|
|
nsx_router_id, advertise_lb_vip=False)
|
|
# Add an advertisement rule for the external network
|
|
router = plugin.get_router(context, rtr_id)
|
|
lb_utils.update_router_lb_vip_advertisement(
|
|
context, plugin, router, nsx_router_id)
|
|
except Exception as e:
|
|
LOG.error("Failed updating router %(id)s: %(e)s",
|
|
{'id': rtr_id, 'e': e})
|
|
|
|
LOG.info("Done.")
|
|
|
|
|
|
registry.subscribe(nsx_update_router_lb_advertisement,
|
|
constants.LB_ADVERTISEMENT,
|
|
shell.Operations.NSX_UPDATE.value)
|