-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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
provider/openstack: Multi Ephemeral Disk Support #5131
provider/openstack: Multi Ephemeral Disk Support #5131
Conversation
@jtopjian I tested the RP on our OpenStack and it is looking good. I managed to split up a 4TB ephemeral disk into 4 single block devices. One note though regarding the boot device:
Did I get it correct, that the block device (index=0) is mandatory? Because I could not create an instance without it. Also, it would be great to use the |
@afritzler Yes, I think |
Btw. one more thing regarding |
@afritzler To be honest, I'm not sure. I'd have to dig into the actual Nova API code to look. However, Edit: never mind, it's an optional attribute. You can safely omit it. Documentation has been updated. :) |
This commit adds the ability to create instances with multiple ephemeral disks. The ephemeral disks will appear as local block devices to the instance.
b3d7019
to
ed9e7de
Compare
This commit fixes and cleans up instance block_device configuration. Reverts hashicorp#5354 in that `volume_size` is only required in certain block_device configuration combinations. Therefore, the actual attribute must be set to Optional and later checks done. Doc upates, too.
04b701e
to
e872c3d
Compare
provider/openstack: Multi Ephemeral Disk Support
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
This commit adds the ability to create instances with multiple ephemeral (local) disks.
Fixes #4042
Fixes #5098