-
Notifications
You must be signed in to change notification settings - Fork 9
[DEV-1038] Cloud init lvm growpart #46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 4 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
303b74f
added cloud-init-growpart-lvm element
g0rgamesh 4c3e826
added growpart package for ubuntu
g0rgamesh 4178481
doc fix
g0rgamesh 3d02da0
added new lines at the end of files
g0rgamesh 639f83e
Merge branch 'master' into cloud-init-lvm-growpart
g0rgamesh d709a0a
- added pkg-map
g0rgamesh b44ab8d
added variable for partition list
g0rgamesh 880deec
new line
g0rgamesh c5756bd
eof
g0rgamesh c2333d2
detentation
g0rgamesh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
============= | ||
cloud-init-growpart-lvm | ||
============= | ||
|
||
This element enables growpart for OS images with LVM. | ||
To enable this element simply include it in the elements list. | ||
|
||
Dependencies: | ||
* ``/usr/bin/growpart`` is needed on the system in order to grow the partition. | ||
However it is part of different packages depending on linux family. That | ||
is already taken care of by package-installs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cloud-utils-growpart: | ||
g0rgamesh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
when: DISTRO_NAME!=ubuntu | ||
cloud-guest-utils: | ||
when: DISTRO_NAME=ubuntu |
19 changes: 19 additions & 0 deletions
19
elements/cloud-init-growpart-lvm/post-install.d/55-growpart-lvm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then | ||
set -x | ||
fi | ||
set -eu | ||
set -o pipefail | ||
|
||
if [ -d /etc/cloud/cloud.cfg.d ]; then | ||
cat > /etc/cloud/cloud.cfg.d/55-growpart-lvm.cfg <<EOF | ||
#cloud-config | ||
growpart: | ||
mode: auto | ||
devices: | ||
- "/dev/vda3" | ||
g0rgamesh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- "/dev/sda3" | ||
g0rgamesh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
ignore_growroot_disabled: false | ||
EOF | ||
fi |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.