Skip to content

Commit

Permalink
Merge pull request #101 from OlivierCharuel/fix/pgbouncer_malformed_e…
Browse files Browse the repository at this point in the history
…xtraSettings

fix(pgbouncer): fixup malformed extraSettings
  • Loading branch information
pmint93 authored Feb 7, 2024
2 parents a0de031 + a9aa735 commit 9b5bffe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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.5.0"
version: "0.5.1"
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-other.ini.tpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- define "pgbouncer-other.ini" -}}
{{- range $k, $v := .Values.extraSettings -}}
{{- range $k, $v := .Values.extraSettings }}
{{ $k }} = {{ $v }}
{{- end -}}
{{- end -}}
2 changes: 1 addition & 1 deletion charts/pgbouncer/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ data:
pgbouncer.ini: |-
{{ include "pgbouncer.ini" . | indent 4 }}
pgbouncer-other.ini: |-
{{ include "pgbouncer-other.ini" . | indent 4 }}
{{- include "pgbouncer-other.ini" . | indent 4 }}

0 comments on commit 9b5bffe

Please sign in to comment.