Skip to content

Commit

Permalink
Merge pull request #839 from eclipse-tractusx/feat/charts/app-version…
Browse files Browse the repository at this point in the history
…-6.0.0-alpha.0

feat(charts): increase app version to 6.0.0-alpha.0
  • Loading branch information
nicoprow authored Mar 29, 2024
2 parents 915ffef + 427bcf8 commit ef85356
Show file tree
Hide file tree
Showing 20 changed files with 59 additions and 29 deletions.
8 changes: 8 additions & 0 deletions charts/bpdm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [5.0.0] - tbd

### Changed

- update BPDM Pool Chart to version 7.0.0
- update BPDM Gate Chart to version 6.0.0
- update BPDM Orchestrator Chart to version 3.0.0
- update BPDM Cleaning Service Dummy Chart to version 3.0.0
- update BPDM Bridge Chart to version 3.0.0

### Removed

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

dependencies:
- name: bpdm-gate
version: 5.0.4
version: 6.0.0-alpha.0
alias: bpdm-gate
condition: bpdm-gate.enabled
- name: bpdm-pool
version: 6.0.4
version: 7.0.0-alpha.0
alias: bpdm-pool
condition: bpdm-pool.enabled
- name: bpdm-cleaning-service-dummy
version: 2.0.4
version: 3.0.0-alpha.0
alias: bpdm-cleaning-service-dummy
condition: bpdm-cleaning-service-dummy.enabled
- name: bpdm-orchestrator
version: 2.0.4
version: 3.0.0-alpha.0
alias: bpdm-orchestrator
condition: bpdm-orchestrator.enabled
- name: bpdm-common
version: 1.0.0
version: 1.0.1
- name: postgresql
version: 11.9.13
repository: https://charts.bitnami.com/bitnami
Expand Down
5 changes: 5 additions & 0 deletions charts/bpdm/charts/bpdm-cleaning-service-dummy/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [3.0.0] - tbd

### Changed

- update app version to 6.0.0

## [2.0.4] - 2024-03-29

Expand Down
6 changes: 3 additions & 3 deletions charts/bpdm/charts/bpdm-cleaning-service-dummy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
apiVersion: v2
type: application
name: bpdm-cleaning-service-dummy
appVersion: "5.0.1"
version: 2.0.4
appVersion: "6.0.0-alpha.0"
version: 3.0.0-alpha.0
description: A Helm chart for deploying the BPDM cleaning service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
- https://github.com/eclipse-tractusx/bpdm
dependencies:
- name: bpdm-common
version: 1.0.0
version: 1.0.1
repository: "file://../bpdm-common"
maintainers:
- name: Nico Koprowski
Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/charts/bpdm-common/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
apiVersion: v2
type: library
name: bpdm-common
version: 1.0.0
version: 1.0.1
description: A library Helm Chart for other BPDM Charts
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ data:
{{- $ := .context -}}
{{- $defaultTemplate := .defaultValues | default "bpdm-common.empty" -}}
{{- $defaultValues := fromYaml (include $defaultTemplate $) | default (dict ) -}}
{{- $override := $.Values.applicationConfig | default (dict ) -}}
{{- $finalValues := merge $defaultValues $override -}}
{{- $override := .context.Values.applicationConfig | default (dict ) -}}
{{- $finalValues := mergeOverwrite $defaultValues $override -}}
{{- include "bpdm-common.configMap.tpl" (dict "context" $ "override" $finalValues) -}}
{{- end -}}
7 changes: 3 additions & 4 deletions charts/bpdm/charts/bpdm-common/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,11 @@ If release name contains chart name it will be used as a full name.
*/}}
{{- define "bpdm.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- $name := .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}}
{{- else if .Values.nameOverride }}
{{- $name := .Values.nameOverride }}
{{- include "bpdm.toReleaseName" (list . .Values.nameOverride) -}}
{{- else }}
{{- $name := .Chart.Name }}
{{- include "bpdm.toReleaseName" (list . $name) -}}
{{- include "bpdm.toReleaseName" (list . .Chart.Name) -}}
{{- end }}
{{- end }}

Expand Down
6 changes: 6 additions & 0 deletions charts/bpdm/charts/bpdm-gate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [6.0.0] - tbd

### Changed

- update app version to 6.0.0

## [5.0.4] - 2024-03-29

### Added
Expand Down
6 changes: 3 additions & 3 deletions charts/bpdm/charts/bpdm-gate/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
apiVersion: v2
type: application
name: bpdm-gate
appVersion: "5.0.1"
version: 5.0.4
appVersion: "6.0.0-alpha.0"
version: 6.0.0-alpha.0
description: A Helm chart for deploying the BPDM gate service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
Expand All @@ -34,7 +34,7 @@ dependencies:
alias: postgres
condition: postgres.enabled
- name: bpdm-common
version: 1.0.0
version: 1.0.1
repository: "file://../bpdm-common"
maintainers:
- name: Nico Koprowski
Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/charts/bpdm-gate/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
################################################################################
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
Expand Down
6 changes: 6 additions & 0 deletions charts/bpdm/charts/bpdm-orchestrator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [3.0.0] - tbd

### Changed

- update app version to 6.0.0

## [2.0.4] - 2024-02-28

### Added
Expand Down
6 changes: 3 additions & 3 deletions charts/bpdm/charts/bpdm-orchestrator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@
apiVersion: v2
type: application
name: bpdm-orchestrator
appVersion: "5.0.1"
version: 2.0.4
appVersion: "6.0.0-alpha.0"
version: 3.0.0-alpha.0
description: A Helm chart for deploying the BPDM Orchestrator service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
- https://github.com/eclipse-tractusx/bpdm
dependencies:
- name: bpdm-common
version: 1.0.0
version: 1.0.1
repository: "file://../bpdm-common"
maintainers:
- name: Nico Koprowski
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
################################################################################
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
Expand Down
6 changes: 6 additions & 0 deletions charts/bpdm/charts/bpdm-pool/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/),

## [7.0.0] - tbd

### Changed

- update app version to 6.0.0

## [6.0.4] - 2024-03-29

### Added
Expand Down
6 changes: 3 additions & 3 deletions charts/bpdm/charts/bpdm-pool/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
apiVersion: v2
type: application
name: bpdm-pool
appVersion: "5.0.1"
version: 6.0.4
appVersion: "6.0.0-alpha.0"
version: 7.0.0-alpha.0
description: A Helm chart for deploying the BPDM pool service
home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View
sources:
Expand All @@ -34,7 +34,7 @@ dependencies:
alias: postgres
condition: postgres.enabled
- name: bpdm-common
version: 1.0.0
version: 1.0.1
repository: "file://../bpdm-common"
maintainers:
- name: Nico Koprowski
Expand Down
2 changes: 1 addition & 1 deletion charts/bpdm/charts/bpdm-pool/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
################################################################################
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
Expand Down

0 comments on commit ef85356

Please sign in to comment.