-
Notifications
You must be signed in to change notification settings - Fork 96
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
[nasa/nos3#498] Vagrant Disk Size #499
base: dev
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #499 +/- ##
=====================================
Coverage 0.00% 0.00%
=====================================
Files 1 1
Lines 2 2
=====================================
Misses 2 2 ☔ View full report in Codecov by Sentry. |
Will need to edit to 265 manually Pulled branch Vagrant up, extended to 64 GB successfully. but getting "NOCHANGE: partition 3 could only be grown by 2015 [fudge=2048]" when running growpart /dev/sda 3 still 64 not 256 vagrant file still reads config is 64 on branch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
adding new vm and increasing disk space to 256 worked using commands (found in issue) works.
also just to reiterate if you only want 64GB, the following also works.
sudo lvextend -l +100%FREE /dev/ubuntu-vg/ubuntu-lv
sudo resize2fs /dev/ubuntu-vg/ubuntu-lv
Approving
The latest commit added the commands to the vagrant provision to make the process easier for users. |
Created new VM. Verified disk size. Extended disk. Verified new disk size. This PR is working as it is supposed to. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
Added line to Vagrantfile to allow extending the size of the VM disk.
Note some additional commands are required and were captured in the FAQ of the
./docs/wiki/Home.md
.Closes #498
Notes on how this was tested prior to merge request are captured in the issue.