New releases of oslo.config support a 'mutable' parameter to Opts. Configuration options are mutable if their oslo.config Opt's mutable=True is set. This mutable setting is respected when the oslo method mutate_config_files is called instead of reload_config_files. Icec3e664f3fe72614e373b2938e8dee53cf8bc5e allows services to tell oslo.service they want mutate_config_files to be called by specifying the 'restart_method=mutate' parameter, what this patch does. The default mutable configuration options (set by oslo.config Opts' mutable=True) are: - [DEFAULT]/pin_release_version - [DEFAULT]/debug - [DEFAULT]/log_config_append Concrete params, that made mutable in Watcher: * watcher_decision_engine.action_plan_expiry * watcher_decision_engine.check_periodic_interval * watcher_decision_engine.continuous_audit_interval * gnocchi_client.query_max_retries * gnocchi_client.query_timeout * DEFAULT.periodic_interval Change-Id: If28f2de094d99471a3ab756c947e29ae3d8a28a2 Implements: bp mutable-config
77 lines
2.9 KiB
Python
77 lines
2.9 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Copyright (c) 2015 Intel Corp
|
|
#
|
|
# Authors: Prudhvi Rao Shedimbi <prudhvi.rao.shedimbi@intel.com>
|
|
#
|
|
# 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.
|
|
|
|
from oslo_config import cfg
|
|
|
|
|
|
watcher_decision_engine = cfg.OptGroup(name='watcher_decision_engine',
|
|
title='Defines the parameters of '
|
|
'the module decision engine')
|
|
|
|
WATCHER_DECISION_ENGINE_OPTS = [
|
|
cfg.StrOpt('conductor_topic',
|
|
default='watcher.decision.control',
|
|
help='The topic name used for '
|
|
'control events, this topic '
|
|
'used for RPC calls'),
|
|
cfg.ListOpt('notification_topics',
|
|
default=['versioned_notifications', 'watcher_notifications'],
|
|
help='The topic names from which notification events '
|
|
'will be listened to'),
|
|
cfg.StrOpt('publisher_id',
|
|
default='watcher.decision.api',
|
|
help='The identifier used by the Watcher '
|
|
'module on the message broker'),
|
|
cfg.IntOpt('max_workers',
|
|
default=2,
|
|
required=True,
|
|
help='The maximum number of threads that can be used to '
|
|
'execute strategies'),
|
|
cfg.IntOpt('action_plan_expiry',
|
|
default=24,
|
|
mutable=True,
|
|
help='An expiry timespan(hours). Watcher invalidates any '
|
|
'action plan for which its creation time '
|
|
'-whose number of hours has been offset by this value-'
|
|
' is older that the current time.'),
|
|
cfg.IntOpt('check_periodic_interval',
|
|
default=30 * 60,
|
|
mutable=True,
|
|
help='Interval (in seconds) for checking action plan expiry.')
|
|
]
|
|
|
|
WATCHER_CONTINUOUS_OPTS = [
|
|
cfg.IntOpt('continuous_audit_interval',
|
|
default=10,
|
|
mutable=True,
|
|
help='Interval (in seconds) for checking newly created '
|
|
'continuous audits.')
|
|
]
|
|
|
|
|
|
def register_opts(conf):
|
|
conf.register_group(watcher_decision_engine)
|
|
conf.register_opts(WATCHER_DECISION_ENGINE_OPTS,
|
|
group=watcher_decision_engine)
|
|
conf.register_opts(WATCHER_CONTINUOUS_OPTS, group=watcher_decision_engine)
|
|
|
|
|
|
def list_opts():
|
|
return [('watcher_decision_engine', WATCHER_DECISION_ENGINE_OPTS),
|
|
('watcher_decision_engine', WATCHER_CONTINUOUS_OPTS)]
|