Website updates for disk management feature

This commit is contained in:
Brian Cain 2020-01-24 15:13:42 -08:00
parent edd9ec89cb
commit 90461014db
No known key found for this signature in database
GPG Key ID: 9FC4639B2E4510A0
2 changed files with 28 additions and 20 deletions

View File

@ -8,26 +8,11 @@ description: |-
# Vagrant Disks
<div class="alert alert-warning">
<strong>Warning!</strong> This feature is experimental and may break or
change in between releases. Use at your own risk. It currently is not officially
supported or functional.
This feature currently reqiures the experimental flag to be used. To explicitly enable this feature, you can set the experimental flag to:
```
VAGRANT_EXPERIMENTAL="disk_base_config"
```
Please note that `VAGRANT_EXPERIMENTAL` is an environment variable. For more
information about this flag visit the [Experimental docs page](/docs/experimental/)
for more info. Without this flag enabled, any disks defined will not be configured.
<strong>NOTE:</strong> Vagrant disks is currently a future feature for Vagrant that is not yet supported.
Some documentation exists here for future reference, however the Disk feature is
not yet functional. Please be patient for us to develop this new feature, and stay
tuned for a future release of Vagrant with this new functionality!
</div>
Add a simple paragraph about the feature and what it can do here.
For more information about what options are available for configuring disks, see the
[configuration section](/docs/disks/configuration.html).
## Supported Providers
Currently, only VirtualBox is supported. Add link here

View File

@ -9,4 +9,27 @@ description: |-
# VirtualBox
<div class="alert alert-warning">
<strong>Warning!</strong> This feature is experimental and may break or
change in between releases. Use at your own risk. It currently is not officially
supported or functional.
This feature currently reqiures the experimental flag to be used. To explicitly enable this feature, you can set the experimental flag to:
```
VAGRANT_EXPERIMENTAL="virtualbox_disk_hdd"
```
Please note that `VAGRANT_EXPERIMENTAL` is an environment variable. For more
information about this flag visit the [Experimental docs page](/docs/experimental/)
for more info. Without this flag enabled, any disks defined will not be configured.
</div>
Vagrant using the `vboxmanage` command line interface to manage disks for a
VirtualBox guest.
Because of how VirtualBox handles disk management, a Vagrant guest _must_ be powered
off for any changes to be applied to a guest. If you make a configuration change
with a guests disk, you will need to `vagrant reload` the guest for any changes
to be applied.