d1d0a04c37
Neutron-LBaaS has now been retired and there will be no Train release[1]. This patch removes neutron-lbaas references from neutron. [1] https://review.opendev.org/658494 Closes-Bug: #1833125 Change-Id: I0fe3fbaf4adf7fb104632fd94cd093e701e12289
38 lines
1.2 KiB
Python
38 lines
1.2 KiB
Python
# Copyright 2012 OpenStack Foundation.
|
|
# 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 neutron_lib.plugins import constants as p_const
|
|
|
|
|
|
# Maps extension alias to service type that
|
|
# can be implemented by the core plugin.
|
|
EXT_TO_SERVICE_MAPPING = {
|
|
'fwaas': p_const.FIREWALL,
|
|
'vpnaas': p_const.VPN,
|
|
'metering': p_const.METERING,
|
|
'router': p_const.L3,
|
|
'qos': p_const.QOS,
|
|
}
|
|
|
|
# Maps default service plugins entry points to their extension aliases
|
|
DEFAULT_SERVICE_PLUGINS = {
|
|
'auto_allocate': 'auto-allocated-topology',
|
|
'tag': 'tag',
|
|
'timestamp': 'timestamp',
|
|
'network_ip_availability': 'network-ip-availability',
|
|
'flavors': 'flavors',
|
|
'revisions': 'revisions',
|
|
}
|