File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed
Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ## 0.6.1
9+
10+ ### Fixed
11+ - postgresqlpassword is in auth block
12+
813## 0.6.0
914
1015### Fixed
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ description: >
1212# This is the chart version. This version number should be incremented each time you make changes
1313# to the chart and its templates, including the app version.
1414# Versions are expected to follow Semantic Versioning (https://semver.org/)
15- version : 0.6.0
15+ version : 0.6.1
1616
1717# This is the version number of the application being deployed. This version number should be
1818# incremented each time you make changes to the application. Versions are not expected to
@@ -43,5 +43,4 @@ annotations:
4343 - name: Helm Chart
4444 url: https://github.com/pecanproject/bety-helm
4545 artifacthub.io/changes : |
46- - bitnami legacy postgresql image
47- - could not find passsword for postgresql
46+ - postgresqlpassword is in auth block
Original file line number Diff line number Diff line change @@ -79,9 +79,14 @@ Environment variables for PostgreSQL
7979- name: PGPASSWORD
8080 valueFrom:
8181 secretKeyRef:
82+ { {- if .Values.postgresql.enabled } }
83+ name: { { .Release.Name } }-postgresql
84+ key: postgres-password
85+ { {- else } }
8286 name: { { include " betydb.fullname" . } }
8387 key: postgresqlPassword
8488{ {- end } }
89+ { {- end } }
8590
8691{ {/*
8792Environment variables for BetyDB
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ metadata:
66 {{- include "betydb.labels" . | nindent 4 }}
77type : Opaque
88data :
9- {{- if and (not .Values.postgresql.enabled) .Values.postgresql.auth.password }}
10- postgresqlPassword : {{ .Values.postgresql.auth.password | b64enc | quote }}
9+ {{- if and (not .Values.postgresql.enabled) .Values.postgresql.auth.postgresPassword }}
10+ postgresqlPassword : {{ .Values.postgresql.auth.postgresPassword | b64enc | quote }}
1111{{- end }}
1212 betyPassword : {{ .Values.betyPassword | b64enc | quote }}
1313 secretKey : {{ .Values.secretKey | b64enc | quote }}
You can’t perform that action at this time.
0 commit comments