Ok, if I am reading it correctly, then I would need something akin to this: "vdsSpecs": [ { "isUsedByNsxt": true, "name": "VDS01", "portGroupSpecs": [ { "name": ...
See more...
Ok, if I am reading it correctly, then I would need something akin to this: "vdsSpecs": [ { "isUsedByNsxt": true, "name": "VDS01", "portGroupSpecs": [ { "name": "VDS01-pg-mgmt", "transportType": "MANAGEMENT" }, { "name": "VDS01-pg-vsan", "transportType": "VSAN" }, { "name": "VDS01-pg-vmotion", "transportType": "VMOTION" } ] } ] At which point the ""isUsedByNsxt": true," flag would place the NSX-T configuration on this vDS as well. VDS01 would carry vMotion, vSAN, ESXI Management, and NSX-T. For the hostNetworkSpec, can it IGNORE vmnics or does each one have to be assigned a vDS and port group configuration? Configuration 1: vmnic1 and vmnic3 to carry VM Workloads "vmNics": [ { "id": "vmnic0", "vdsName": "VDS01", "moveToNvds": true }, { "id": "vmnic1", "vdsName": "VDS02", "moveToNvds": false }, { "id": "vmnic2", "vdsName": "VDS01", "moveToNvds": true }, { "id": "vmnic3", "vdsName": "VDS02", "moveToNvds": false } ] Configuration 2: Can we bypass configuring vmnic1 and vmnic3 and configure the vDS later? "vmNics": [ { "id": "vmnic0", "vdsName": "VDS01", "moveToNvds": true }, { "id": "vmnic2", "vdsName": "VDS01", "moveToNvds": true } ]