
One Convergence Neutron Plugin implements Neutron API to provide a network virtualization solution. The plugin works with One Convergence NVSD controller to provide the functionality. This checkin implements the Neutron core APIs and the plugin will be extended to support the L3 and service plugin extension APIs. Change-Id: Ic8a0dc0f5950d41b9b253c0d61b6812dbfd161c7 Implements: blueprint oc-nvsd-neutron-plugin
42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
# Copyright 2014 OneConvergence, 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.
|
|
#
|
|
|
|
""" Register the configuration options"""
|
|
|
|
from oslo.config import cfg
|
|
|
|
|
|
NVSD_OPT = [
|
|
cfg.StrOpt('nvsd_ip',
|
|
default='127.0.0.1',
|
|
help=_("NVSD Controller IP address")),
|
|
cfg.IntOpt('nvsd_port',
|
|
default=8082,
|
|
help=_("NVSD Controller Port number")),
|
|
cfg.StrOpt('nvsd_user',
|
|
default='ocplugin',
|
|
help=_("NVSD Controller username")),
|
|
cfg.StrOpt('nvsd_passwd',
|
|
default='oc123', secret=True,
|
|
help=_("NVSD Controller password")),
|
|
cfg.IntOpt('request_timeout',
|
|
default=30,
|
|
help=_("NVSD controller REST API request timeout in seconds")),
|
|
cfg.IntOpt('nvsd_retries', default=0,
|
|
help=_("Number of login retries to NVSD controller"))
|
|
]
|
|
|
|
cfg.CONF.register_opts(NVSD_OPT, "nvsd")
|