INDETERMINATE VMware Cloud Director 10.x
INDETERMINATE status occurs when a Cloud Cell node is configured with a different failover status (manual or automatic).
To align the failover status of the affected node with the rest of the cluster, use the following API calls:
POST https://{api_host}/api/1.0.0/sessionsGET https://{api_host}/api/1.0.0/nodes
For additional information visit Get NodesPOST https://{FQDN or IP of the node}/api/1.0.0/nodes/failover/{desired-mode}or using the command:
curl -X POST -H "Accept: application/json" -H "Authorization: Basic [[basicHash]]" -H "Accept: application/json" "https://vcd-appliance-ip:5480/api/1.0.0/nodes/failover/{desired-mode}"Valid values are:
automaticmanual
View Your VMware Cloud Director Appliance Cluster Health and Failover Mode
VMware Cloud Director Appliance API - Failovermode
curl -k -u root -X POST "https://<VCD-NODE-FQDN-OR-IP>:5480/api/1.0.0/sessions"curl -k -i -X POST -H "Accept: application/json" -H "Authorization: Bearer <YOUR-AUTH-TOKEN>" "https://<VCD-NODE-FQDN-OR-IP>:5480/api/1.0.0/nodes/failover/{desired-mode}"Note: replace {desired-mode} with "automatic" or "manual"