Free Report! Gartner® Hype Cycle™ for Monitoring and Observability.Read more

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 host postgres.mycorp.net on port 5432.

yaml
1backend:
2  type: postgres
3  postgres:
4    host: 'postgres.mycorp.net'
5    port: 5432
6    database: 'bindplane'
7    username: 'bindplane'
8    password: 'bindplane-pass'