Hi, I wanted to ask here before posting an issue on Github.
I am attempting to use the new Vagrant Disks Feature to simulate having a block volume mounted to a cloud node. I’ve started my project with the centos/8
box. I’m open to using other boxes, but want CentOS 8 as an OS. There doesn’t seem to be a good way to determine the controller type the boxes use from the metadata on vagrantcloud.com.
Here are my observations:
- It appears this box is setup to use an IDE controller for the 10GB disk that contains the OS.
- It appears that the Disks feature can only attached new disks to a SATA controller named “SATA Controller”.
- Using the
custom
command within a VirtualBox Provider block of code to add a SATA controller named “SATA Controller” to the box does not seem to work properly. - Running
vagrant up
, and allowing it to fail, then manually adding the “SATA Contoller” either by VirtualBox GUI orvboxmanage
command, then runningvagrant up --provision
works fine.
Is anyone playing with this or am I looking in the wrong place for ideas/help?
Thanks!