Jumpstarter Lab setup (RH Summit 2025)
We observerd some issues with the developer hub, on first boot where the database migration fails. See this issue. To resolve the issue, we had to manually remove the offending record from the database. On the Postgresql pod, run the following command:
# connect to the database
psql
# select the database
\c backstage_plugin_catalog
# delete the offending record
DELETE FROM knex_migrations_lock WHERE is_locked <> 0;
COMMIT;
\q