Utilize the API to configure hosts utilizing the non-standard VMNICs. In the following example VMNIC1 and VMNIC2 will be utilized. These examples are utilizing the developer center.
- Commission the hosts following the standard UI process.
- Gather the UUID for the cluster being expanded
- Developer Center > Api Explorer > APIs for managing clusters > GET
- Click execute
- Go to the PATCH option in the APIs for managing clusters
- There is an option to auto fill with an example of flags for expanding the cluster
- Enter the cluster ID
- For the VMNIC reconfiguration, here is an example:
{
"clusterExpansionSpec": {
"hostSpecs": [ {
"id": "30e2a984-25af-4c2c-aafe-1700b433431f",
"hostNetworkSpec": {
"vmNics": [ {
"id": "vmnic1",
"vdsName": "sfo-m01-c101-vds01"
},{
"id": "vmnic2",
"vdsName": "sfo-m01-c101-vds01"
} ]
}
}
],
"interRackExpansion":false
}
}
- Click execute
- Cluster should expand with the host. If the vSAN configuration is not as expected, that can be reconfigured after expansion.