bootstrap-vz/bootstrapvz/providers
Brendan Harley 511a44f72e Add LVM as a disk backend
Enables the use of Logical Volumes as disk backends.

It uses an existing volume group and has no support for creating a new one.
It will not override an existing logical volume and fail gracefully.

The lv is created, activated and then mounted as a loop device.
The boostraping process is then launched on the loop device.
Once the process is completed, the lv is unmounted and desactivated.

The created lv will be deleted should the boostraping process fail.

The lv must be activated before use.

A manifest has been included for testing purposes.
2017-06-08 17:05:48 +02:00
..
azure Systematically use rel_path for relative paths 2016-09-12 19:11:20 +02:00
docker Systematically use rel_path for relative paths 2016-09-12 19:11:20 +02:00
ec2 EC2: Update the URL to dowload the ixgbevf driver 2017-03-15 16:57:44 -04:00
gce Create a plugin for expand_root to replace the internal common task. 2017-01-26 10:18:04 -08:00
kvm Add LVM as a disk backend 2017-06-08 17:05:48 +02:00
oracle Systematically use rel_path for relative paths 2016-09-12 19:11:20 +02:00
virtualbox Move some package adding tasks into the preparation phase 2017-04-15 10:01:27 +02:00
__init__.py Move code into proper package folder 2014-04-02 21:26:13 +02:00
README.rst Repeat index/README pattern for plugins & providers 2015-04-16 23:52:07 +02:00

Providers in bootstrap-vz represent various cloud providers and virtual machines.

bootstrap-vz is an extensible platform with loose coupling and a significant
amount of tooling, which allows for painless implementation of new providers.

The virtualbox provider for example is implemented in only 89 lines of python,
since most of the building blocks are a part of the common task library.
Only the kernel and guest additions installation are specific to that provider.