The Control Plane shows as not active, and we cannot run the upgrade
TCA: 3.4
TCP: 5.1
A failed upgrade, or an upgrade performed outside of the TCA interface
Set the Cluster to Active by updating the appropriate cluster ID psql entry to Active
PGPASSWORD=$(cat /common/pgsql/passwords/tca_admin) psql -U tca_admin -d tca -c "select * from \"K8sClusterDetails\" where val->>'id'='########-####-####-####-############' and val->>'rowType'='cluster';" > /tmp/pg._query.txt
PGPASSWORD=$(cat /common/pgsql/passwords/tca_admin) \
psql -U tca_admin -d tca -c \
"UPDATE \"K8sClusterDetails\"
SET val = jsonb_set(val, '{status}', '\"ACTIVE\"', false)
WHERE val->>'id'='########-####-####-####-############'
AND val->>'rowType'='cluster';"