Note: Before proceeding with any changes, please take no memory quiesced snapshots and backups of all Aria Automation appliances.
Steps for handling stuck deployments:
- Open an SSH session to the vRA appliance and login to tango-blueprint-db database:
vracli dev psql tango-blueprint-db
- Run below query to display the stuck deployments:
select id,project_id,env->'DEPLOYMENT_ID' as deployment_id,env->'DEPLOYMENT_NAME' as deployment_name, task_name,last_execution_at from bp_tile_execution where ((last_execution_at is NULL and created_at < NOW() - INTERVAL '30 minutes') or (last_execution_at < NOW() - INTERVAL '30 minutes')) and status='IN_PROGRESS' and task_name<>'<<approval>>';
Note: Verify that the deployment id matches to the one that has the problem.
- Please engage Broadcom Support to address the deployment state.