Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit ad3a3e7

Browse files
authored
[helm] Update postgresql chart to 14.2.3 (#3292)
This change introduces a major Postgresql upgrade (from 15.1.0 to 16.1.0). From https://artifacthub.io/packages/helm/bitnami/postgresql/13.2.24#to-13-0-0: This major version changes the default PostgreSQL image from 15.x to 16.x. Follow the [official instructions](https://www.postgresql.org/docs/15/upgrading.html) to upgrade to 16.x. ### Pull Request Checklist <!-- Please read https://matrix-org.github.io/dendrite/development/contributing before submitting your pull request --> * [x] I have added Go unit tests or [Complement integration tests](https://github.com/matrix-org/complement) for this PR _or_ I have justified why this PR doesn't need tests * [x] Pull request includes a [sign off below using a legally identifiable name](https://matrix-org.github.io/dendrite/development/contributing#sign-off) _or_ I have already signed off privately This PR doesn't need a Go unit tests since it doesn't touch any code, only the helm chart is affected. Signed-off-by: Varac Anero <[email protected]> --------- Signed-off-by: Varac Anero <[email protected]> Co-authored-by: Till Faelligen <[email protected]> [skip ci]
1 parent 6686559 commit ad3a3e7

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,7 @@ media_store/
7777
build
7878

7979
# golang workspaces
80-
go.work*
80+
go.work*
81+
82+
# helm chart
83+
helm/dendrite/charts/

helm/dendrite/Chart.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
apiVersion: v2
22
name: dendrite
3-
version: "0.13.8"
3+
version: "0.14.0"
44
appVersion: "0.13.6"
55
description: Dendrite Matrix Homeserver
66
type: application
7+
icon: https://avatars.githubusercontent.com/u/8418310?s=48&v=4
78
keywords:
89
- matrix
910
- chat
@@ -13,7 +14,7 @@ home: https://github.com/matrix-org/dendrite
1314
sources:
1415
- https://github.com/matrix-org/dendrite
1516
dependencies:
16-
- name: postgresql
17-
version: 12.1.7
18-
repository: https://charts.bitnami.com/bitnami
19-
condition: postgresql.enabled
17+
- name: postgresql
18+
version: 14.2.3
19+
repository: https://charts.bitnami.com/bitnami
20+
condition: postgresql.enabled

0 commit comments

Comments
 (0)