]> git.apps.os.sepia.ceph.com Git - ceph.git/commit
lvm: add sizing arguments to prepare and create.
authorJan Fajerski <jfajerski@suse.com>
Tue, 10 Dec 2019 13:56:37 +0000 (14:56 +0100)
committerJan Fajerski <jfajerski@suse.com>
Wed, 12 Feb 2020 07:43:59 +0000 (08:43 +0100)
commit31fb57fccd5e46d540771eec2fadfa38a7fa007f
tree69f285ac29ca5afddcc5affc47b4d8381d8dc651
parent3f8ed660c6a07191cd6547aa017420393d0ac084
lvm: add sizing arguments to prepare and create.

This adds options to size to-be-created LVs in the prepare and create
subcommands. Sizing can be done explicitly by passing a sizes or
implicitly by specifying the number of slots per [data|journal|wal|db]
device. The former will try to create a LV of the specified size and use
that to create OSDs if it succeeds. The latter will carve up the device
size into $n slots and use one of those slots for the to-be-created OSD.
If partitions or LVs are passed these options are ignored.
This also creates the foundation to move to byte-based sizing, by moving
VolumeGroup lvm querying and size calculation to bytes as the base unit.

Fixes: https://tracker.ceph.com/issues/43299
Signed-off-by: Jan Fajerski <jfajerski@suse.com>
(cherry picked from commit 8b8913ad3c0b8ceae9f458fd8d3ec292c5ff5eb1)
src/ceph-volume/ceph_volume/api/lvm.py
src/ceph-volume/ceph_volume/devices/lvm/common.py
src/ceph-volume/ceph_volume/devices/lvm/prepare.py
src/ceph-volume/ceph_volume/tests/api/test_lvm.py
src/ceph-volume/ceph_volume/tests/devices/lvm/test_prepare.py