There is a need to retry the management cluster upgrade
TCA: 3.2
TCP: 5.0.1
Upgrade did not finish or is processing
Update the TCA Manager
kubectl exec -it postgres-0 -n tca-mgr – psql -d tca -U tca_admin -h localhostupdate "K8sClusterDetails" set val = jsonb_set(val, '{clusterConfig,kubernetesVersion}', '"v1.28.11+vmware.2"', false) where val->>'clusterName'='<name of cluster>';Update the TCA-CP
kubectl exec -it postgres-0 -n tca-cp-cn – psql -d caas_spoke -U caas_spoke_admin -h localhostUPDATE "management_cluster_statuses"
SET val = jsonb_set(val, '{phase}', '"PostConfig"')
WHERE id = (
SELECT id
FROM "management_clusters"
WHERE name = '<name of cluster>'
);
UPDATE "management_cluster_statuses"
SET val = jsonb_set(val, '{status}', '"Failure"')
WHERE id = (
SELECT id
FROM "management_clusters"
WHERE name = '<name of cluster>'
);