Instead of following the steps in "Configure the VMware Cloud Director Primary Appliance" and "Configure the VMware Cloud Director Standby and Application Cells" , configure the appliances by using the VMware Cloud Director Appliance SystemSetup API. This will bypass the NFS validation failure.
For example for Cloud Director 10.3 and above (API Version 36.0), use the versioned endpoint required by the SystemSetup API:
https://<IP>:5480/api/1.0.0/systemSetup
For example for Cloud Director 10.2, use the experimental (not versioned) endpoint of the SystemSetup API:
https://<IP>:5480/api/systemSetup
In either case, execute a POST to the SystemSetup API. Also note that the SystemSetup API requires a unique request body that must match the appliance's deployment type.
This is an example of the request body for a Primary appliance:
{
"applianceType": "primary",
"storage": {
"nfs": "<IP>:/data/transfer"
},
"appliance": {
"dbPassword": "vcloud",
"ceip": true
},
"sysAdmin": {
"username": "administrator",
"password": "secret-password",
"fullName": "cloud administrator",
"email": "[email protected]"
},
"installation": {
"name": "vcd5",
"id": 5
}
}
This is an example of the request body for a Standby appliance:
{
"applianceType": "standby",
"storage": {
"nfs": "<IP>:/data/transfer"
}
}
This is an example of the request body for a Cell appliance:
{
"applianceType": "cell",
"storage": {
"nfs": "<IP>:/data/transfer"
}
}
For more information on the SystemSetup API see VMware Cloud Director Appliance API SystemSetup API Request Body - Samples and VMware Cloud Director Appliance API SystemSetup.