Login to TanzuSM postgres instance and locate the raas_<org_id_without_dashes>.
Drop the database in raas_<org_id_without_dashes>.
Create a new database called raas_<org_id_without_dashes> and import the data from the Aria Conifg into the raas_<org_id_without_dashes>.
To map users from Aria Config to Tanzu SM auth,
UPDATE USERS set username = '<tanzu_okta_user>', normalized_username = '<tanzu_okta_user>' where username = '<aria_config_username>';
Repeat this step for all users that need a mapping.
Edit the kubernetes secret "raas-db-encryption-key" to the base64 encoded value of contents of Aria Config raas encryption key /etc/raas/pki/.raas.key file copied in Step Use echo -n "contents_of_raas_key_file" | base64 for encoding
Run the db upgrade job in tanzusm. It would already run once when the raas deployment. So, something it needs to be re-run to upgrade the Aria Config DB to the current Tanzu Config SM release.