Skip to content

Commit 901b26c

Browse files
nix-powerBitnami Containers
and
Bitnami Containers
authoredJan 14, 2025··
bitnami/postgresql Fix missing dot in include statement for passwordUpdate job template (#31364)
* Fix missing dot in include statement for passwordUpdate job Signed-off-by: Dima Zyuryaev <dima@nix-power.com> * Bumping chart yaml for CI Signed-off-by: Dima Zyuryaev <dima@nix-power.com> * Update CHANGELOG.md Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> --------- Signed-off-by: Dima Zyuryaev <dima@nix-power.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
1 parent 512fab2 commit 901b26c

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed
 

‎bitnami/postgresql/CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

3-
## 16.4.2 (2025-01-13)
3+
## 16.4.3 (2025-01-14)
44

5-
* [bitnami/postgresql] Release 16.4.2 ([#31342](https://github.com/bitnami/charts/pull/31342))
5+
* bitnami/postgresql Fix missing dot in include statement for passwordUpdate job template ([#31364](https://github.com/bitnami/charts/pull/31364))
6+
7+
## <small>16.4.2 (2025-01-13)</small>
8+
9+
* [bitnami/postgresql] Release 16.4.2 (#31342) ([946b638](https://github.com/bitnami/charts/commit/946b638fd63e2d7e74865d591ef403b4dce229b3)), closes [#31342](https://github.com/bitnami/charts/issues/31342)
610

711
## <small>16.4.1 (2025-01-13)</small>
812

‎bitnami/postgresql/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ maintainers:
3535
name: postgresql
3636
sources:
3737
- https://github.com/bitnami/charts/tree/main/bitnami/postgresql
38-
version: 16.4.2
38+
version: 16.4.3

‎bitnami/postgresql/templates/update-password/job.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ spec:
5757
args:
5858
- |
5959
{{- $customUser := include "postgresql.v1.username" . }}
60-
{{- $customDatabase := include "postgresql.v1.database" | default "postgres" }}
60+
{{- $customDatabase := include "postgresql.v1.database" . | default "postgres" }}
6161
{{- if .Values.usePasswordFiles }}
6262
# We need to load all the secret env vars to the system
6363
for file in $(find /bitnami/postgresql/secrets -type f); do

0 commit comments

Comments
 (0)
Please sign in to comment.