From: Alfredo Deza Date: Tue, 11 Jul 2017 19:59:50 +0000 (-0400) Subject: ceph-volume: init: define a few conf attributes X-Git-Tag: ses5-milestone10~3^2~5^2~65 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c38cac143897c574741f46367b27bf5639155f96;p=ceph.git ceph-volume: init: define a few conf attributes Signed-off-by: Alfredo Deza --- diff --git a/src/ceph-volume/ceph_volume/__init__.py b/src/ceph-volume/ceph_volume/__init__.py index 6be930d44ef..f5500015c35 100644 --- a/src/ceph-volume/ceph_volume/__init__.py +++ b/src/ceph-volume/ceph_volume/__init__.py @@ -1,9 +1,5 @@ from collections import namedtuple -conf = namedtuple('config', ['ceph', 'ceph_volume']) +conf = namedtuple('config', ['ceph', 'cluster', 'verbosity', 'path', 'log_path']) -conf.ceph_volume = { - 'verbosity': 'info', -} - -__version__ = '0.0.1' +__version__ = "1.0.0"