...
Exec into kfuse-configdb shell . using command -
Code Block k exec -it kfuse-configdb-0 -- bash
psql into the postgres using command -
Code Block psql -U postgres
It will ask for password for kfuse-configdbpostgres. Provide that.
Check all tables and if
samldb
exist database exists using the command-Code Block \l
Delete and create the table
samldb
Code Block dropDROP databaseDATABASE samldb; createdbCREATE DATABASE samldb;