X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fceph-volume%2Fceph_volume%2Fdevices%2Flvm%2Fcommon.py;fp=src%2Fceph%2Fsrc%2Fceph-volume%2Fceph_volume%2Fdevices%2Flvm%2Fcommon.py;h=b2fbbf991edeb72e50c3e888e93683106d7b7b5a;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/ceph-volume/ceph_volume/devices/lvm/common.py b/src/ceph/src/ceph-volume/ceph_volume/devices/lvm/common.py new file mode 100644 index 0000000..b2fbbf9 --- /dev/null +++ b/src/ceph/src/ceph-volume/ceph_volume/devices/lvm/common.py @@ -0,0 +1,67 @@ +from ceph_volume.util import arg_validators +import argparse + + +def common_parser(prog, description): + """ + Both prepare and create share the same parser, those are defined here to + avoid duplication + """ + parser = argparse.ArgumentParser( + prog=prog, + formatter_class=argparse.RawDescriptionHelpFormatter, + description=description, + ) + required_args = parser.add_argument_group('required arguments') + parser.add_argument( + '--journal', + help='(filestore) A logical volume (vg_name/lv_name), or path to a device', + ) + required_args.add_argument( + '--data', + required=True, + type=arg_validators.LVPath(), + help='OSD data path. A physical device or logical volume', + ) + parser.add_argument( + '--journal-size', + default=5, + metavar='GB', + type=int, + help='(filestore) Size (in GB) for the journal', + ) + parser.add_argument( + '--bluestore', + action='store_true', + help='Use the bluestore objectstore', + ) + parser.add_argument( + '--filestore', + action='store_true', + help='Use the filestore objectstore', + ) + 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( + '--block.db', + dest='block_db', + help='(bluestore) Path to bluestore block.db logical volume or device', + ) + parser.add_argument( + '--block.wal', + dest='block_wal', + help='(bluestore) Path to bluestore block.wal logical volume or device', + ) + # Do not parse args, so that consumers can do something before the args get + # parsed triggering argparse behavior + return parser + + +create_parser = common_parser # noqa +prepare_parser = common_parser # noqa