From: Alfredo Deza Date: Wed, 6 Dec 2017 14:12:48 +0000 (-0500) Subject: [RM-22324] osd add flags for ceph-volume debug mode X-Git-Tag: v2.0.0~3^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=5de9a6eb73477d12fab371a22ccd59a139a4f932;p=ceph-deploy.git [RM-22324] osd add flags for ceph-volume debug mode Signed-off-by: Alfredo Deza --- diff --git a/ceph_deploy/osd.py b/ceph_deploy/osd.py index 126434c..f62c106 100644 --- a/ceph_deploy/osd.py +++ b/ceph_deploy/osd.py @@ -448,7 +448,11 @@ def make(parser): metavar='HOST', help='remote host(s) to list OSDs from' ) - + osd_list.add_argument( + '--debug', + action='store_true', + help='Enable debug mode on remote ceph-volume calls', + ) osd_create = osd_parser.add_parser( 'create', help='Create new Ceph OSD daemon by preparing and activating a device' @@ -513,6 +517,11 @@ def make(parser): metavar='HOST', help='Remote host to connect' ) + osd_create.add_argument( + '--debug', + action='store_true', + help='Enable debug mode on remote ceph-volume calls', + ) parser.set_defaults( func=osd, ) @@ -552,6 +561,11 @@ def make_disk(parser): metavar='HOST', help='Remote HOST(s) to list OSDs from' ) + disk_list.add_argument( + '--debug', + action='store_true', + help='Enable debug mode on remote ceph-volume calls', + ) parser.set_defaults( func=disk, )