Since PrepareVrliDriftInputAction is the last step of the config drift and there is no vRLI deployed we can mark the workflow status as successful.
- Open an SSH session to the SDDC Manager VM and switch to root user:
su -
- Access the postgres database:
psql --host=localhost -U postgres -d lcm
- Find the failed config drift upgrade task and note the upgradeId:
select * from upgrade;
- Update the status as below to mark the upgrade as completed:
update upgrade set upgrade_status='COMPLETED_WITH_SUCCESS' where upgradeId=<upgradeId>;