Skip to content

allir/docker-pgbouncer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pgbouncer-kubernetes

This project contains a Helm chart and a Docker image for PgBouncer.


Configuration

Create a my-values.yaml file (or whatever filename you like) to add your databases and users settings.

# my-values.yaml example
deployment:
  replicas: 1

databases:
  mydatabase:
    dbname: mydb
    host: dbserver

users:
  userlist:
    admin: supersecure
  admin_users:
  - admin

config:
  server_tls_sslmode: prefer
  ignore_startup_parameters: extra_float_digits

Installation

In this repo:

helm install -f my-values.yaml pgbouncer ./chart

Credit

This chart was made by combinging bits and pieces from other available charts and then modifying and adding in more stuff.

Sources: