From 3400f31787c197c52037f26a69fa1e2c1a6c294f Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 19 Feb 2018 15:13:04 -0500 Subject: [PATCH] ceph-volume lvm.common remove --journal-size as it is not used/supported Signed-off-by: Alfredo Deza --- src/ceph-volume/ceph_volume/devices/lvm/common.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ceph-volume/ceph_volume/devices/lvm/common.py b/src/ceph-volume/ceph_volume/devices/lvm/common.py index eb56f43c01aed..869fcf20016d7 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/common.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/common.py @@ -71,46 +71,46 @@ def common_parser(prog, description): help='(REQUIRED) A logical volume (vg_name/lv_name), or path to a device', ) - filestore_group.add_argument( - '--journal-size', - default=5, - metavar='GB', - type=int, - help='Size (in GB) for the journal', - ) bluestore_group.add_argument( '--bluestore', action='store_true', help='Use the bluestore objectstore', ) + bluestore_group.add_argument( '--block.db', dest='block_db', help='Path to bluestore block.db logical volume or device', ) + bluestore_group.add_argument( '--block.wal', dest='block_wal', help='Path to bluestore block.wal logical volume or device', ) + parser.add_argument( '--osd-id', help='Reuse an existing OSD id', ) + parser.add_argument( '--osd-fsid', help='Reuse an existing OSD fsid', ) + parser.add_argument( '--crush-device-class', dest='crush_device_class', help='Crush device class to assign this OSD to', ) + parser.add_argument( '--dmcrypt', action='store_true', help='Enable device encryption via dm-crypt', ) + # Do not parse args, so that consumers can do something before the args get # parsed triggering argparse behavior return parser -- 2.39.5