83d9b3abdd
Implementing the Octavia support for NSX-V & NSX-T. Follow up patches will handle the TVD plugin, Status updates, and migration. Since Octavia is not (yet?) in the requirements, using a hack to allow unittests to be skipped. Co-Authored-by: Adit Sarfaty <asarfaty@vmware.com> Change-Id: Iadb24e7eadcab658faf3e646cc528c2a8a6976e5
46 lines
1.3 KiB
Python
46 lines
1.3 KiB
Python
# Copyright 2018 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.
|
|
|
|
OCTAVIA_TO_DRIVER_TOPIC = 'vmware_nsx__lb_listener'
|
|
DRIVER_TO_OCTAVIA_TOPIC = 'vmware_nsx__driver_listener'
|
|
|
|
LOADBALANCER = 'loadbalancer'
|
|
LISTENER = 'listener'
|
|
POOL = 'pool'
|
|
HEALTHMONITOR = 'healthmonitor'
|
|
MEMBER = 'member'
|
|
L7POLICY = 'l7policy'
|
|
L7RULE = 'l7rule'
|
|
|
|
LOADBALANCERS = 'loadbalancers'
|
|
LISTENERS = 'listeners'
|
|
POOLS = 'pools'
|
|
HEALTHMONITORS = 'healthmonitors'
|
|
MEMBERS = 'members'
|
|
L7POLICIES = 'l7policies'
|
|
L7RULES = 'l7rules'
|
|
|
|
ONLINE = 'ONLINE'
|
|
OFFLINE = 'OFFLINE'
|
|
ERROR = 'ERROR'
|
|
ACTIVE = 'ACTIVE'
|
|
DELETED = 'DELETED'
|
|
ERROR = 'ERROR'
|
|
|
|
OPERATING_STATUS = 'operating_status'
|
|
PROVISIONING_STATUS = 'provisioning_status'
|
|
|
|
DEVICE_OWNER_OCTAVIA = 'Octavia'
|