Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(charts): increase supported postgres version to 15 #840

Merged
merged 1 commit into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions charts/bpdm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [5.0.0] - tbd

### Breaking

- Postgres Chart dependency version from 14 to 15: When using the Postgres deployment managed by the BPDM Chart please mind to migrate your data as this update is not backwards compatible.

### Changed

- update BPDM Pool Chart to version 7.0.0
Expand Down
8 changes: 4 additions & 4 deletions charts/bpdm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ apiVersion: v2
name: bpdm
type: application
description: A Helm chart for Kubernetes that deploys the BPDM applications
version: 5.0.0-alpha.1
version: 5.0.0-alpha.2
appVersion: "6.0.0-alpha.0"
home: https://github.com/eclipse-tractusx/bpdm
sources:
Expand All @@ -33,11 +33,11 @@ maintainers:

dependencies:
- name: bpdm-gate
version: 6.0.0-alpha.0
version: 6.0.0-alpha.1
alias: bpdm-gate
condition: bpdm-gate.enabled
- name: bpdm-pool
version: 7.0.0-alpha.0
version: 7.0.0-alpha.1
alias: bpdm-pool
condition: bpdm-pool.enabled
- name: bpdm-cleaning-service-dummy
Expand All @@ -51,7 +51,7 @@ dependencies:
- name: bpdm-common
version: 1.0.1
- name: postgresql
version: 11.9.13
version: 12.12.10
repository: https://charts.bitnami.com/bitnami
alias: postgres
condition: postgres.enabled
2 changes: 1 addition & 1 deletion charts/bpdm/charts/bpdm-common/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Create name of application secret
Determine postgres service/host name to connect to
*/}}
{{- define "bpdm.postgresDependency" -}}
{{- include "includeWithPostgresContext" (list $ "postgresql.primary.fullname") }}
{{- include "includeWithPostgresContext" (list $ "postgresql.v1.primary.fullname") }}
{{- end }}}

{{/*
Expand Down
5 changes: 5 additions & 0 deletions charts/bpdm/charts/bpdm-gate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [6.0.0] - tbd

### Breaking

- Postgres Chart dependency version from 14 to 15: When using the Postgres deployment managed by the BPDM Chart please mind to migrate your data as this update is not backwards compatible.


### Changed

- update app version to 6.0.0
Expand Down
4 changes: 2 additions & 2 deletions charts/bpdm/charts/bpdm-gate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ apiVersion: v2
type: application
name: bpdm-gate
appVersion: "6.0.0-alpha.0"
version: 6.0.0-alpha.0
version: 6.0.0-alpha.1
description: A Helm chart for deploying the BPDM gate service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
- https://github.com/eclipse-tractusx/bpdm
dependencies:
- name: postgresql
version: 11.9.13
version: 12.12.10
repository: https://charts.bitnami.com/bitnami
alias: postgres
condition: postgres.enabled
Expand Down
5 changes: 5 additions & 0 deletions charts/bpdm/charts/bpdm-pool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [7.0.0] - tbd

### Breaking

- Postgres Chart dependency version from 14 to 15: When using the Postgres deployment managed by the BPDM Chart please mind to migrate your data as this update is not backwards compatible.


### Changed

- update app version to 6.0.0
Expand Down
4 changes: 2 additions & 2 deletions charts/bpdm/charts/bpdm-pool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ apiVersion: v2
type: application
name: bpdm-pool
appVersion: "6.0.0-alpha.0"
version: 7.0.0-alpha.0
version: 7.0.0-alpha.1
description: A Helm chart for deploying the BPDM pool service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
- https://github.com/eclipse-tractusx/bpdm
dependencies:
- name: postgresql
version: 11.9.13
version: 12.12.10
repository: https://charts.bitnami.com/bitnami
alias: postgres
condition: postgres.enabled
Expand Down
Loading