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
Schema for `cloud_properties` section used by network subnet:
17
17
18
-
* **name** [String, optional]: Name of the network. Example: `vboxnet0`.
19
-
* **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`.
20
-
21
-
Example of manual network matching any name:
18
+
* **name** [String, optional]: Name of the VirtualBox network. When not
19
+
specified (i.e. empty or null value), a new network of the specified type
20
+
will be created. For convenience, when the specified network does not exist,
21
+
the CPI will try to create one with that name (see the many caveats about
22
+
this below). Example: `vboxnet0`.
23
+
* **type** [String, optional]: Type of the VirtualBox network. Supported
24
+
values: `hostonly`, `bridged`, `natnetwork`.
25
+
See [`VBoxManage modifyvm` networking settings][modifyvm_net_settings] for
Currently the CPI does not support any cloud properties for disks.
102
+
103
+
Example of 10GB disk:
104
+
105
+
```yaml
106
+
disk_types:
107
+
- name: default
108
+
disk_size: 10_240
109
+
```
110
+
111
+
---
112
+
## Global Configuration {: #global }
113
+
114
+
The CPI uses individual VirtualBox VMs and disks. Since the CPI can only talk to a single VirtualBox server it can only manage resources on a single machine.
0 commit comments