f9c55abbff
The Oslo libraries have moved all of their code out of the 'oslo' namespace package into per-library packages. The namespace package was retained during kilo for backwards compatibility, but will be removed by the liberty-2 milestone. This change removes the use of the namespace package, replacing it with the new package names. The patches in the libraries will be put on hold until application patches have landed, or L2, whichever comes first. At that point, new versions of the libraries without namespace packages will be released as a major version update. Please merge this patch, or an equivalent, before L2 to avoid problems with those library releases. Blueprint: remove-namespace-packages https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages Change-Id: Ia21c15e8eca6bf456f7cfe13f815f5ce068601e7
74 lines
2.3 KiB
Python
74 lines
2.3 KiB
Python
# Copyright 2012 Managed I.T.
|
|
#
|
|
# Author: Kiall Mac Innes <kiall@managedit.ie>
|
|
#
|
|
# 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 eventlet
|
|
|
|
eventlet.monkey_patch()
|
|
|
|
import os
|
|
import socket
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log
|
|
from oslo_concurrency import lockutils
|
|
import oslo_messaging as messaging
|
|
|
|
|
|
cfg.CONF.register_opts([
|
|
cfg.StrOpt('host', default=socket.gethostname(),
|
|
help='Name of this node'),
|
|
cfg.StrOpt(
|
|
'pybasedir',
|
|
default=os.path.abspath(os.path.join(os.path.dirname(__file__),
|
|
'../')),
|
|
help='Directory where the designate python module is installed'
|
|
),
|
|
cfg.StrOpt('state-path', default='/var/lib/designate',
|
|
help='Top-level directory for maintaining designate\'s state'),
|
|
|
|
cfg.StrOpt('central-topic', default='central', help='Central Topic'),
|
|
cfg.StrOpt('mdns-topic', default='mdns', help='mDNS Topic'),
|
|
cfg.StrOpt('pool-manager-topic', default='pool_manager',
|
|
help='Pool Manager Topic'),
|
|
|
|
# Default TTL
|
|
cfg.IntOpt('default-ttl', default=3600),
|
|
|
|
# Default SOA Values
|
|
cfg.IntOpt('default-soa-refresh', default=3600),
|
|
cfg.IntOpt('default-soa-retry', default=600),
|
|
cfg.IntOpt('default-soa-expire', default=86400),
|
|
cfg.IntOpt('default-soa-minimum', default=3600),
|
|
])
|
|
|
|
# Set some Oslo Log defaults
|
|
log.set_defaults(default_log_levels=[
|
|
'amqplib=WARN',
|
|
'amqp=WARN',
|
|
'sqlalchemy=WARN',
|
|
'boto=WARN',
|
|
'suds=INFO',
|
|
'keystone=INFO',
|
|
'eventlet.wsgi.server=WARN',
|
|
'stevedore=WARN',
|
|
'keystonemiddleware.auth_token=INFO',
|
|
'oslo.messaging=WARN'])
|
|
|
|
# Set some Oslo RPC defaults
|
|
messaging.set_transport_defaults('designate')
|
|
|
|
# Set some Oslo Oslo Concurrency defaults
|
|
lockutils.set_defaults(lock_path='$state_path')
|