]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Create an LVM utility to use for local storage.
authorJohn Griffith <john.griffith@solidfire.com>
Wed, 8 May 2013 05:11:50 +0000 (23:11 -0600)
committerJohn Griffith <john.griffith@solidfire.com>
Mon, 13 May 2013 15:18:17 +0000 (09:18 -0600)
commit0fbe00f70da73e0cc58ddf7c9fdead261392778d
treef8d44d09d89e2f5b450c7371db331404cd062aad
parentaef83c437e3d101c639676d795ae0398611bd7f6
Create an LVM utility to use for local storage.

This adds a simple LVM class for performing local
LVM operations.  The idea is that an LVM object
is instantiated based on a volume group, init
can be used to instantiate and query an existing
volume group, or create a new one if given a list
of PV's to use in creation.

See BP for information on where this is going and
how it will be used in Cinder and hopefully other
projects.

Implements blueprint: local-lvm-storage-utils

Change-Id: Iddde92af18f2317edc5f4583b2113c2b8117a4fe
cinder/brick/__init__.py [new file with mode: 0644]
cinder/brick/local_dev/__init__.py [new file with mode: 0644]
cinder/brick/local_dev/lvm.py [new file with mode: 0644]
cinder/tests/brick/__init__.py [new file with mode: 0644]
cinder/tests/brick/test_brick_lvm.py [new file with mode: 0644]