You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This topic describes cloud properties for different resources created by the [VirtualBox CPI](https://bosh.io/releases/github.com/cppforlife/bosh-virtualbox-cpi-release). VirtualBox CPI works with [vSphere ESXI stemcells](https://bosh.io/stemcells/bosh-vsphere-esxi-ubuntu-xenial-go_agent).
2
2
3
+
## Feature Support
4
+
5
+
The following sections describe some specific BOSH features supported by the CPI.
6
+
7
+
### Network
8
+
9
+
The CPI does not support multiple NICs being attached to a VM.
| Generic VM Resource Configuration | Supported, [v27.0.0](https://github.com/cloudfoundry/bosh-google-cpi-release/releases/tag/v27.0.0)+ |
24
+
3
25
## AZs {: #azs }
4
26
5
27
Currently the CPI does not support any cloud properties for AZs.
@@ -16,8 +38,35 @@ azs:
16
38
17
39
Schema for `cloud_properties` section used by network subnet:
18
40
19
-
* **name** [String, required]: Name of the network. Example: `vboxnet0`. Default: `vboxnet0`.
20
-
* **type** [String, optional]: Type of the network. See [`VBoxManage modifyvm` networking settings](https://www.virtualbox.org/manual/ch08.html#idp46691722135120) for valid values. Example: `hostonly`. Default: `hostonly`.
41
+
* **name** [String, optional]: Name of the VirtualBox network. When not
42
+
specified (i.e. empty or null value), a new network of the specified type
43
+
will be created. For convenience, when the specified network does not exist,
44
+
the CPI will try to create one with that name (see the many caveats about
45
+
this below). Example: `vboxnet0`.
46
+
* **type** [String, optional]: Type of the VirtualBox network. Supported
47
+
values: `hostonly`, `bridged`, `natnetwork`.
48
+
See [`VBoxManage modifyvm` networking settings][modifyvm_net_settings] for
0 commit comments