The cluster status is marked as INDETERMINATE due to one/two Cloud Cell(s) node(s) exhibiting a failover status that does not match the other node(s).
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 command from any Node inside your Cluster:
<node IP or FQDN> in the following steps.curl -k -X POST -u root "https://<node IP or FQDN>:5480/api/1.0.0/sessions"{ "authToken": "<token>", "expires": "<timestamp>"}curl -k -X GET -H "Accept: application/json" -H "Authorization: Bearer <authToken>" "https://<node IP or FQDN>:5480/api/1.0.0/nodes"curl -i -k -X POST -H "Accept: application/json" -H "Authorization: Bearer <authToken>" "https://<node IP or FQDN>:5480/api/1.0.0/nodes/failover/automatic"curl -i -k -X POST -H "Accept: application/json" -H "Authorization: Bearer <authToken>" "https://<node IP or FQDN>:5480/api/1.0.0/nodes/failover/manual"curl -k -X GET -H "Accept: application/json" -H "Authorization: Bearer <authToken>" "https://<node IP or FQDN>:5480/api/1.0.0/nodes"