264a609526
Nuage networks’ openstack networking plugin enables integration of openstack with Nuage Networks’ Virtual Service Platform (VSP) Change-Id: If20b385b78a350cb9aae2c70b6a44888e74c23bc Implements: blueprint nuage-networks-plugin
48 lines
2.0 KiB
Python
48 lines
2.0 KiB
Python
# Copyright 2014 Alcatel-Lucent USA 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.
|
|
#
|
|
# @author: Ronak Shah, Nuage Networks, Alcatel-Lucent USA Inc.
|
|
|
|
from oslo.config import cfg
|
|
|
|
|
|
restproxy_opts = [
|
|
cfg.StrOpt('server', default='localhost:8800',
|
|
help=_("IP Address and Port of Nuage's VSD server")),
|
|
cfg.StrOpt('serverauth', default='username:password',
|
|
secret=True,
|
|
help=_("Username and password for authentication")),
|
|
cfg.BoolOpt('serverssl', default=False,
|
|
help=_("Boolean for SSL connection with VSD server")),
|
|
cfg.StrOpt('base_uri', default='/',
|
|
help=_("Nuage provided base uri to reach out to VSD")),
|
|
cfg.StrOpt('organization', default='system',
|
|
help=_("Organization name in which VSD will orchestrate "
|
|
"network resources using openstack")),
|
|
cfg.StrOpt('auth_resource', default='',
|
|
help=_("Nuage provided uri for initial authorization to "
|
|
"access VSD")),
|
|
cfg.StrOpt('default_net_partition_name',
|
|
default='OpenStackDefaultNetPartition',
|
|
help=_("Default Network partition in which VSD will "
|
|
"orchestrate network resources using openstack")),
|
|
cfg.IntOpt('default_floatingip_quota',
|
|
default=254,
|
|
help=_("Per Net Partition quota of floating ips")),
|
|
]
|
|
|
|
|
|
def nuage_register_cfg_opts():
|
|
cfg.CONF.register_opts(restproxy_opts, "RESTPROXY")
|