-
Notifications
You must be signed in to change notification settings - Fork 510
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
Feature/vsphere disk resizing #11137
Conversation
83d653b
to
d7c8ac2
Compare
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.
Thanks, this looks great! Hopefully it works without the global read-only permission?
@@ -398,7 +398,7 @@ func (c *Client) extendVMRootDisk( | |||
sizeMB uint64, | |||
taskWaiter *taskWaiter, | |||
) error { | |||
disk, backing, err := c.getDiskWithFileBacking(ctx, vm) | |||
disk, _, err := c.getDiskWithFileBacking(ctx, vm) |
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.
Might as well change this method to getDisk
and drop the backing return value, it doesn't look like anything else uses it.
…t need this permission anymore;
!!build!! |
|
#11151 ### Checklist - [x] Checked if it requires a [pylibjuju](https://github.com/juju/python-libjuju) change? - [x] Added [integration tests](https://github.com/juju/juju/tree/develop/tests) for the PR? - [x] Added or updated [doc.go](https://discourse.jujucharms.com/t/readme-in-packages/451) related to packages changed? - [x] Do comments answer the question of why design decisions were made? ---- ## Description of change This pulls the latest changes in the 2.7 branch into develop. Brings in: - #11139 from jameinel/2.7-detach-volume-state-changing-1860542 - #11141 from howbazaar/2.7-fix-provisioner-leak - #11144 from babbageclunk/2.7-fix-destroy-test - #11137 from ycliuhw/feature/vSphere-disk-resizing - #11146 from manadart/2.7-provisioner-worker-test - #11147 from manadart/relocate-systemd-files - #11150 from manadart/2.7-controller-integration-test - #11149 from manadart/2.7-systemd-upgrades (No conflicts when merging.)
Please provide the following details to expedite Pull Request review:
Checklist
Description of change
Changed to use
Reconfigure
API for disk resizing;QA steps
Documentation changes
No(Internal change);
Bug reference
No