mirror of
https://opendev.org/openstack/designate.git
synced 2026-01-16 23:11:37 +00:00
In a production system, the previous state-path would default to something like /usr/lib/python2.6/site-packages. Not only is this a bizarre place to keep Designate's state, it also breaks the bind9 backend, which attemps to create and write to /usr/lib/python2.6/site-packages/bind9. Since /var/lib is defined in the Filesystem Hierarchy Standard as the place to store persistent state information, it's better to explicitly use it as the default state-path. Change-Id: I91922799ba1dcae1ad33f1abbec79b1eb907307f Closes-bug: 1279989
65 lines
2.5 KiB
Python
65 lines
2.5 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 os
|
|
import socket
|
|
from oslo.config import cfg
|
|
|
|
cfg.CONF.import_opt('default_log_levels', 'designate.openstack.common.log')
|
|
cfg.CONF.import_opt('control_exchange', 'designate.openstack.common.rpc')
|
|
cfg.CONF.import_opt('allowed_rpc_exception_modules',
|
|
'designate.openstack.common.rpc')
|
|
|
|
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 nova 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('agent-topic', default='agent', help='Agent 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
|
|
cfg.CONF.set_default('default_log_levels',
|
|
['amqplib=WARN',
|
|
'amqp=WARN',
|
|
'sqlalchemy=WARN',
|
|
'boto=WARN',
|
|
'suds=INFO',
|
|
'keystone=INFO',
|
|
'eventlet.wsgi.server=WARN',
|
|
'stevedore=WARN',
|
|
'keystoneclient.middleware.auth_token=INFO'])
|
|
|
|
# Set some Oslo RPC defaults
|
|
cfg.CONF.set_default('control_exchange', 'designate')
|
|
cfg.CONF.set_default('allowed_rpc_exception_modules',
|
|
['designate.exceptions',
|
|
'designate.openstack.common.exception'])
|