9b6d3b1b47
Implement LBaaSv2 driver for NSXv Edge appliance load balancer. Includes TLS support for Edge appliance, and certificate management For SSL termination. Change-Id: I60093c0186cce3e99fb26e1fc6bd5175cbd1a560
68 lines
2.7 KiB
Python
68 lines
2.7 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
#
|
|
# Copyright 2013 VMware, Inc
|
|
#
|
|
# 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.
|
|
|
|
import os
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from vmware_nsx.plugins.nsx_v.vshield import edge_appliance_driver
|
|
from vmware_nsx.plugins.nsx_v.vshield import edge_firewall_driver
|
|
from vmware_nsx.plugins.nsx_v.vshield.tasks import tasks
|
|
from vmware_nsx.plugins.nsx_v.vshield import vcns
|
|
from vmware_nsx.services.lbaas.nsx_v.v1 import edge_loadbalancer_driver
|
|
from vmware_nsx.services.lbaas.nsx_v.v2 import (
|
|
edge_loadbalancer_driver_v2 as lbaas_v2)
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class VcnsDriver(edge_appliance_driver.EdgeApplianceDriver,
|
|
edge_loadbalancer_driver.EdgeLbDriver,
|
|
lbaas_v2.EdgeLoadbalancerDriverV2,
|
|
edge_firewall_driver.EdgeFirewallDriver):
|
|
|
|
def __init__(self, callbacks):
|
|
super(VcnsDriver, self).__init__()
|
|
|
|
self.callbacks = callbacks
|
|
self.vcns_uri = cfg.CONF.nsxv.manager_uri
|
|
self.vcns_user = cfg.CONF.nsxv.user
|
|
self.vcns_passwd = cfg.CONF.nsxv.password
|
|
self.ca_file = cfg.CONF.nsxv.ca_file
|
|
self.insecure = cfg.CONF.nsxv.insecure
|
|
self.datacenter_moid = cfg.CONF.nsxv.datacenter_moid
|
|
self.deployment_container_id = cfg.CONF.nsxv.deployment_container_id
|
|
self.resource_pool_id = cfg.CONF.nsxv.resource_pool_id
|
|
self.datastore_id = cfg.CONF.nsxv.datastore_id
|
|
self.external_network = cfg.CONF.nsxv.external_network
|
|
self._pid = None
|
|
self._task_manager = None
|
|
self.vcns = vcns.Vcns(self.vcns_uri, self.vcns_user, self.vcns_passwd,
|
|
self.ca_file, self.insecure)
|
|
|
|
@property
|
|
def task_manager(self):
|
|
if (self._task_manager is None or
|
|
self._pid != os.getpid()):
|
|
LOG.debug("Creating task manager")
|
|
self._pid = os.getpid()
|
|
interval = cfg.CONF.nsxv.task_status_check_interval
|
|
self._task_manager = tasks.TaskManager(interval)
|
|
LOG.debug("Starting task manager")
|
|
self._task_manager.start()
|
|
return self._task_manager
|