
This patchset fixes a couple of bugs wrt processing requests before sending them to the backend controller and adjusts the requests based on the controller requirements. It also corrects typos, add quotas and changes the default for a configuration parameter. Change-Id: I4b64c2b49ff4854949afc1e54cba1057f376b058 Closes-Bug: #1311260 DocImpact: The default tenant type is chganged from OF to OVERLAY
75 lines
3.0 KiB
Python
75 lines
3.0 KiB
Python
# Copyright 2014 IBM Corp.
|
|
#
|
|
# 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.
|
|
#
|
|
# @author: Mohammad Banikazemi, IBM Corp.
|
|
|
|
|
|
from oslo.config import cfg
|
|
|
|
|
|
DEFAULT_INTERFACE_MAPPINGS = []
|
|
DEFAULT_CONTROLLER_IPS = ['127.0.0.1']
|
|
|
|
sdnve_opts = [
|
|
cfg.BoolOpt('use_fake_controller', default=False,
|
|
help=_("If set to True uses a fake controller.")),
|
|
cfg.StrOpt('base_url', default='/one/nb/v2/',
|
|
help=_("Base URL for SDN-VE controller REST API")),
|
|
cfg.ListOpt('controller_ips', default=DEFAULT_CONTROLLER_IPS,
|
|
help=_("List of IP addresses of SDN-VE controller(s)")),
|
|
cfg.StrOpt('info', default='sdnve_info_string',
|
|
help=_("SDN-VE RPC subject")),
|
|
cfg.StrOpt('port', default='8443',
|
|
help=_("SDN-VE controller port number")),
|
|
cfg.StrOpt('format', default='json',
|
|
help=_("SDN-VE request/response format")),
|
|
cfg.StrOpt('userid', default='admin',
|
|
help=_("SDN-VE administrator user id")),
|
|
cfg.StrOpt('password', default='admin',
|
|
help=_("SDN-VE administrator password")),
|
|
cfg.StrOpt('integration_bridge', default=None,
|
|
help=_("Integration bridge to use")),
|
|
cfg.BoolOpt('reset_bridge', default=True,
|
|
help=_("Reset the integration bridge before use")),
|
|
cfg.BoolOpt('out_of_band', default=True,
|
|
help=_("Indicating if controller is out of band or not")),
|
|
cfg.ListOpt('interface_mappings',
|
|
default=DEFAULT_INTERFACE_MAPPINGS,
|
|
help=_("List of <physical_network_name>:<interface_name>")),
|
|
cfg.StrOpt('default_tenant_type', default='OVERLAY',
|
|
help=_("Tenant type: OVERLAY (default) or OF")),
|
|
cfg.StrOpt('overlay_signature', default='SDNVE-OVERLAY',
|
|
help=_("The string in tenant description that indicates "
|
|
"the tenant is a OVERLAY tenant")),
|
|
cfg.StrOpt('of_signature', default='SDNVE-OF',
|
|
help=_("The string in tenant description that indicates "
|
|
"the tenant is a OF tenant")),
|
|
]
|
|
|
|
sdnve_agent_opts = [
|
|
cfg.IntOpt('polling_interval', default=2,
|
|
help=_("Agent polling interval if necessary")),
|
|
cfg.StrOpt('root_helper', default='sudo',
|
|
help=_("Using root helper")),
|
|
cfg.BoolOpt('rpc', default=True,
|
|
help=_("Whether using rpc")),
|
|
|
|
]
|
|
|
|
|
|
cfg.CONF.register_opts(sdnve_opts, "SDNVE")
|
|
cfg.CONF.register_opts(sdnve_agent_opts, "SDNVE_AGENT")
|