Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/pgbouncer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: pgbouncer
version: "0.8.1"
version: "0.9.0"
description: A Helm chart for Pgbouncer
type: application
home: https://github.com/pmint93/helm-charts
Expand Down
2 changes: 1 addition & 1 deletion charts/pgbouncer/templates/_pgbouncer.ini.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ pool_mode = {{ .Values.settings.pool_mode | default "session" }}

;; Number of prepared statements to cache on a server connection (zero value
;; disables support of prepared statements).
;max_prepared_statements = 0
max_prepared_statements = {{ .Values.extraSettings.max_prepared_statements | default 0 }}

;; Query for cleaning connection immediately after releasing from
;; client. No need to put ROLLBACK here, pgbouncer does not reuse
Expand Down
2 changes: 2 additions & 0 deletions charts/pgbouncer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ settings:

extraSettings:
ignore_startup_parameters: extra_float_digits
max_prepared_statements: 0


existingSecrets: []
# - name: my-cert-secret
Expand Down