Skip to content

Commit

Permalink
Merge pull request #174 from one-acre-fund/feature/pgbouncer
Browse files Browse the repository at this point in the history
Fix deployment.yaml syntax issue
  • Loading branch information
samaroon authored Oct 24, 2023
2 parents 87a96a9 + 3ce6467 commit 9ed8efa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions charts/pgbouncer/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: pgbouncer
description: A Helm chart for deploying bitnami/pgbouncer with TLS encryption
version: 0.1.0
version: 0.1.1
appVersion: 1.19.1
type: application
maintainers:
Expand All @@ -15,7 +15,7 @@ keywords:
- PostgreSQL
- database
- TLS
home: https://github.com/one-acre-fund/oaf-private-charts
home: https://github.com/one-acre-fund/oaf-public-charts
sources:
- https://github.com/one-acre-fund/oaf-private-charts
- https://github.com/one-acre-fund/oaf-public-charts
- https://bitnami.com/stack/pgbouncer
12 changes: 6 additions & 6 deletions charts/pgbouncer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ spec:
{{- if .Values.resources }}
resources: {{ .Values.resources | toYaml | nindent 10 }}
{{- end }}
volumes:
{{- if .Values.tls.enabled }}
- name: tls-secret
secret:
secretName: {{ .Values.tls.existingSecret }}
{{- end }}
{{- if .Values.tls.enabled }}
volumes:
- name: tls-secret
secret:
secretName: {{ .Values.tls.existingSecret }}
{{- end }}

0 comments on commit 9ed8efa

Please sign in to comment.