PostgreSQL

Bindplane Postgres Helm Configuration

When operating Bindplane in a distributed architecture, a shared PostgreSQL instance is required.

Basic Example

This example will configure Bindplane to connect to the hostpostgres.mycorp.net on port 5432.

backend:
  type: postgres
  postgres:
    host: 'postgres.mycorp.net'
    port: 5432
    database: 'bindplane'
    username: 'bindplane'
    password: 'bindplane-pass'

Last updated

Was this helpful?