Instructions to utilize API calls to expand a cluster with non-standard VMNIC configurations.
Symptoms:
The host add to expand a cluster showing the following error in the domain.log:
CLUSTER_HOST_VMNIC_CONFIGURATION_NON_HOMOGENEOUS All the hosts in the cluster must have homogeneous vmnic configuration.
This failure occurs because the hosts in the cluster are not using VMNIC0 and VMNIC1 (standard VCF VMNICs) for the configuration.
VMware Cloud Foundation
Environment is not utilizing VMNIC0 and VMNIC1 for the host connectivity.
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.
{
"clusterExpansionSpec": {
"hostSpecs": [ {
"id": "30e2a984-25af-4c2c-aafe-1700b433431f",
"hostNetworkSpec": {
"vmNics": [ {
"id": "vmnic1",
"vdsName": "example-vds"
},{
"id": "vmnic2",
"vdsName": "example-vds"
} ]
}
}
],
"interRackExpansion":false
}
}