* Add ability to specify the sslmode parameter when connecting to PostgreSQL * Fix min versions for replication queries * Add query-tests target to main Makefile
18 lines
388 B
YAML
18 lines
388 B
YAML
---
|
|
|
|
# Bind to all interfaces so we can submit requests from outside the test container
|
|
address: 0.0.0.0
|
|
|
|
# We always just connect to the db container
|
|
dbhost: db
|
|
dbport: 5432
|
|
dbuser: postgres
|
|
|
|
# The SSL cipher parameters are too old in the 9.2 container, so we allow the tests
|
|
# to be run without encryption
|
|
ssl_mode: prefer
|
|
|
|
# Pull in the standard metrics
|
|
include:
|
|
- pgmon-metrics.yml
|