]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
ceph-volume lvm.common remove --journal-size as it is not used/supported
authorAlfredo Deza <adeza@redhat.com>
Mon, 19 Feb 2018 20:13:04 +0000 (15:13 -0500)
committerAlfredo Deza <adeza@redhat.com>
Wed, 21 Feb 2018 17:55:16 +0000 (12:55 -0500)
Signed-off-by: Alfredo Deza <adeza@redhat.com>
src/ceph-volume/ceph_volume/devices/lvm/common.py

index eb56f43c01aeda048e18aeb0dc9f56eabd562ffb..869fcf20016d74cb14e16aa31f32cc98082d8ab3 100644 (file)
@@ -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