Invoke-VcfGetClusters 500: Internal server error calling GetClusters
{"errorCode":"VCF_RUNTIME_ERROR","arguments":[],"message":"Something went wrong. Please retry or contact the
service provider and provide the reference token","referenceToken":"7SRAM3"}
[Error] No vLCM baseline (VUM) managed clusters detected in connected vCenter(s).
VMware Cloud Foundation 5.2.2
The value for the parameter 'isImageBased' is 'null' for the cluster table in the SDDC manager DB.
This is a boolean field, therefore the PowerCLI script expect it to be either true ('t') or false ('f'), but cannot handle if it is empty.
To fix this issue, please ensure to have a fresh backup, then take the following steps:
# psql -U postgres -h localhost
\c platform
select * from cluster;
update cluster set is_image_based='f' where name='<cluster_name>';
\q