Implemented paths config module

Implemented paths config module

Partially Implements: blueprint centralise-config-opts

Change-Id: I2b779fb1ce552567feac678cb5bd78aad0d53d52
This commit is contained in:
Prudhvi Rao Shedimbi
2016-11-29 22:56:45 +00:00
committed by David TARDIVEL
parent ac6848dad3
commit 5c79074e9c
4 changed files with 47 additions and 17 deletions

View File

@@ -17,23 +17,9 @@
import os
from oslo_config import cfg
from watcher import conf
PATH_OPTS = [
cfg.StrOpt('pybasedir',
default=os.path.abspath(os.path.join(os.path.dirname(__file__),
'../')),
help='Directory where the watcher python module is installed.'),
cfg.StrOpt('bindir',
default='$pybasedir/bin',
help='Directory where watcher binaries are installed.'),
cfg.StrOpt('state_path',
default='$pybasedir',
help="Top-level directory for maintaining watcher's state."),
]
CONF = cfg.CONF
CONF.register_opts(PATH_OPTS)
CONF = conf.CONF
def basedir_def(*args):

View File

@@ -20,6 +20,7 @@
from oslo_config import cfg
from watcher.conf import api
from watcher.conf import paths
from watcher.conf import service
from watcher.conf import utils
@@ -28,3 +29,4 @@ CONF = cfg.CONF
service.register_opts(CONF)
api.register_opts(CONF)
utils.register_opts(CONF)
paths.register_opts(CONF)

View File

@@ -21,8 +21,8 @@ from keystoneauth1 import loading as ka_loading
from watcher.applier import manager as applier_manager
from watcher.common import clients
from watcher.common import exception
from watcher.common import paths
from watcher.conf import api as conf_api
from watcher.conf import paths
from watcher.conf import utils
from watcher.db.sqlalchemy import models
from watcher.decision_engine.audit import continuous

42
watcher/conf/paths.py Normal file
View File

@@ -0,0 +1,42 @@
# -*- encoding: utf-8 -*-
# Copyright (c) 2016 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
import os
PATH_OPTS = [
cfg.StrOpt('pybasedir',
default=os.path.abspath(os.path.join(os.path.dirname(__file__),
'../')),
help='Directory where the watcher python module is installed.'),
cfg.StrOpt('bindir',
default='$pybasedir/bin',
help='Directory where watcher binaries are installed.'),
cfg.StrOpt('state_path',
default='$pybasedir',
help="Top-level directory for maintaining watcher's state."),
]
def register_opts(conf):
conf.register_opts(PATH_OPTS)
def list_opts():
return [('DEFAULT', PATH_OPTS)]