Setup Postgresql for Bisque Database Persistence

Create a Volume: pgdev-vol

Setup a Postgresql 10 database

    POSTGRES_DB=postgres
    POSTGRES_PASSWORD=postgres
    POSTGRES_USER=postgres

Here is the complete Postgres workload configuration screen shot for reference

Workload postgres

Make sure to claim this volume in the Postgres workload deploy configuration

Workload postgres volume

Test database using the nodes IP
psql -h 10.42.0.15 -U postgres --password -p 5432 postgres
psql -h postgres.prod -U postgres --password -p 5432 postgres
CREATE DATABASE connoisseur;
GRANT ALL PRIVILEGES ON DATABASE "connoisseur" to postgres;