Skip to content

Commit

Permalink
fix(pgbouncer): fixup malformed extraSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierCharuel committed Feb 6, 2024
1 parent a0de031 commit 3eadf84
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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
4 changes: 2 additions & 2 deletions 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 -}}
{{- define "pgbouncer-other.ini" }}
{{- 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 3eadf84

Please sign in to comment.