Adding configurations for Kuryr
Partially Implements blueprint kuryr-config Change-Id: I66738833ce14275f4ca647724bd695a69c7c0380
This commit is contained in:
parent
cbe0734875
commit
7301bf2122
6
etc/README-config.txt
Normal file
6
etc/README-config.txt
Normal file
@ -0,0 +1,6 @@
|
||||
To generate the sample kuryr.conf file, run the following
|
||||
command from the top level of the kuryr directory:
|
||||
|
||||
tox -egenconfig
|
||||
|
||||
The sample file will be generated at /etc/kuryr.conf.sample
|
4
etc/kuryr-config-generator.conf
Normal file
4
etc/kuryr-config-generator.conf
Normal file
@ -0,0 +1,4 @@
|
||||
[DEFAULT]
|
||||
output_file = etc/kuryr.conf.sample
|
||||
wrap_width = 79
|
||||
namespace = kuryr
|
0
kuryr/common/__init__.py
Normal file
0
kuryr/common/__init__.py
Normal file
65
kuryr/common/config.py
Normal file
65
kuryr/common/config.py
Normal file
@ -0,0 +1,65 @@
|
||||
# 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.
|
||||
|
||||
"""
|
||||
Routines for configuring Kuryr
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from oslo_config import cfg
|
||||
|
||||
from kuryr import i18n
|
||||
|
||||
_ = i18n._
|
||||
|
||||
core_opts = [
|
||||
cfg.StrOpt('pybasedir',
|
||||
default=os.path.abspath(os.path.join(os.path.dirname(__file__),
|
||||
'../../')),
|
||||
help=_('Directory where kuryr python module is installed.')),
|
||||
cfg.StrOpt('bindir',
|
||||
default='$pybasedir/usr/libexec/kuryr',
|
||||
help=_('Directory for kuryr vif binding executables.')),
|
||||
cfg.StrOpt('kuryr_uri',
|
||||
default='http://127.0.0.1:2377',
|
||||
help=_('Kuryr URL for accessing Kuryr through json rpc.')),
|
||||
]
|
||||
neutron_opts = [
|
||||
cfg.StrOpt('neutron_uri',
|
||||
default=os.environ.get('OS_URL', 'http://127.0.0.1:9696'),
|
||||
help=_('Neutron URL for accessing the network service.')),
|
||||
]
|
||||
keystone_opts = [
|
||||
cfg.StrOpt('auth_uri',
|
||||
default=os.environ.get('IDENTITY_URL',
|
||||
'http://127.0.0.1:35357'),
|
||||
help=_('The URL for accessing the identity service.')),
|
||||
cfg.StrOpt('admin_user',
|
||||
default=os.environ.get('SERVICE_USER'),
|
||||
help=_('The admin username.')),
|
||||
cfg.StrOpt('admin_tenant_name',
|
||||
default=os.environ.get('SERVICE_TENANT_NAME'),
|
||||
help=_('The admin username.')),
|
||||
cfg.StrOpt('admin_password',
|
||||
default=os.environ.get('SERVICE_PASSWORD'),
|
||||
help=_('The admin password.')),
|
||||
cfg.StrOpt('admin_token',
|
||||
default=os.environ.get('SERVICE_TOKEN'),
|
||||
help=_('The admin token.')),
|
||||
]
|
||||
|
||||
|
||||
CONF = cfg.CONF
|
||||
CONF.register_opts(core_opts)
|
||||
CONF.register_opts(neutron_opts, group='neutron_client')
|
||||
CONF.register_opts(keystone_opts, group='keystone_client')
|
30
kuryr/i18n.py
Normal file
30
kuryr/i18n.py
Normal file
@ -0,0 +1,30 @@
|
||||
# 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.
|
||||
|
||||
import oslo_i18n
|
||||
|
||||
_translators = oslo_i18n.TranslatorFactory(domain='neutron')
|
||||
|
||||
# The primary translation function using the well-known name "_"
|
||||
_ = _translators.primary
|
||||
|
||||
# Translators for log levels.
|
||||
#
|
||||
# The abbreviated names are meant to reflect the usual use of a short
|
||||
# name like '_'. The "L" is for "log" and the other letter comes from
|
||||
# the level.
|
||||
_LI = _translators.log_info
|
||||
_LW = _translators.log_warning
|
||||
_LE = _translators.log_error
|
||||
_LC = _translators.log_critical
|
48
kuryr/opts.py
Normal file
48
kuryr/opts.py
Normal file
@ -0,0 +1,48 @@
|
||||
# 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.
|
||||
|
||||
__all__ = [
|
||||
'list_kuryr_opts',
|
||||
]
|
||||
|
||||
import copy
|
||||
import itertools
|
||||
|
||||
import kuryr.common.config
|
||||
|
||||
|
||||
_kuryr_opts = [
|
||||
(None, list(itertools.chain(
|
||||
kuryr.common.config.core_opts))),
|
||||
('neutron_client', kuryr.common.config.neutron_opts),
|
||||
('keystone_client', kuryr.common.config.keystone_opts),
|
||||
]
|
||||
|
||||
|
||||
def list_kuryr_opts():
|
||||
"""Return a list of oslo_config options available in Kuryr service.
|
||||
|
||||
Each element of the list is a tuple. The first element is the name of the
|
||||
group under which the list of elements in the second element will be
|
||||
registered. A group name of None corresponds to the [DEFAULT] group in
|
||||
config files.
|
||||
|
||||
This function is also discoverable via the 'kuryr' entry point under
|
||||
the 'oslo_config.opts' namespace.
|
||||
|
||||
The purpose of this is to allow tools like the Oslo sample config file
|
||||
generator to discover the options exposed to users by Kuryr.
|
||||
|
||||
:returns: a list of (group_name, opts) tuples
|
||||
"""
|
||||
|
||||
return [(k, copy.deepcopy(o)) for k, o in _kuryr_opts]
|
35
kuryr/tests/test_config.py
Normal file
35
kuryr/tests/test_config.py
Normal file
@ -0,0 +1,35 @@
|
||||
# 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 kuryr.common import config
|
||||
from kuryr.tests import base
|
||||
|
||||
|
||||
class ConfigurationTest(base.TestCase):
|
||||
|
||||
def test_defaults(self):
|
||||
basepath = os.path.abspath(os.path.join(os.path.dirname(__file__),
|
||||
'../../'))
|
||||
self.assertEqual(basepath,
|
||||
config.CONF.pybasedir)
|
||||
self.assertEqual(basepath + '/usr/libexec/kuryr',
|
||||
config.CONF.bindir)
|
||||
self.assertEqual('http://127.0.0.1:2377',
|
||||
config.CONF.kuryr_uri)
|
||||
|
||||
self.assertEqual('http://127.0.0.1:9696',
|
||||
config.CONF.neutron_client.neutron_uri)
|
||||
|
||||
self.assertEqual('http://127.0.0.1:35357',
|
||||
config.CONF.keystone_client.auth_uri)
|
@ -20,6 +20,10 @@ classifier =
|
||||
Programming Language :: Python :: 3.3
|
||||
Programming Language :: Python :: 3.4
|
||||
|
||||
[entry_points]
|
||||
oslo.config.opts =
|
||||
kuryr = kuryr.opts:list_kuryr_opts
|
||||
|
||||
[files]
|
||||
packages =
|
||||
kuryr
|
||||
|
Loading…
Reference in New Issue
Block a user