bootstrap-vz/bootstrapvz/providers
Jonh Wendell c477c32e4a EC2: Added growpart script
This is an attempt to fix issue #237

The script "growpart" was added as an asset, because
Debian's Jessie version (inside cloud-utils) package is
outdated and buggy.

Then "expand-root" init script was modified to call growpart
before calling resize2fs. In fact, calling resize2fs without
resizing the partition first is useless.

The task was named 'AddWorkaroundGrowpart' because it must
go away in the future in favor of using recent stuff in cloud-utils.

Currently even the official images suffer this issue, that makes
the system use only 8 GiB, even if the user chooses a bigger
storage size inside AWS.
2016-01-12 18:46:20 +00:00
..
azure Improve providers docs and add loads of manifest examples 2015-12-13 19:41:18 +01:00
docker Rename minimized-jessie.yml to jessie-minimized.yml 2015-12-13 23:32:26 +01:00
ec2 EC2: Added growpart script 2016-01-12 18:46:20 +00:00
gce Change location of GCE apt repo's (this is an interim change). 2015-12-15 11:20:49 -08:00
kvm enable support for creating kvm images for jessie on arm64 2016-01-08 13:06:57 -06:00
virtualbox Improve providers docs and add loads of manifest examples 2015-12-13 19:41:18 +01: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.