82c5da84f6
Octavia vip port device ids has a prefix that should be removed/added when trying to get the lb id from it, or get hte relevnat ports. Change-Id: Ie39e358969eb9c0080c6bac823b373e512270be1
47 lines
1.3 KiB
Python
47 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'
|
|
DEVICE_ID_PREFIX = 'lb-'
|