From 2036c046e83928562e03b8112c3be2c3e58d88c7 Mon Sep 17 00:00:00 2001 From: Nico Koprowski Date: Thu, 8 Feb 2024 13:51:40 +0800 Subject: [PATCH] docs(Charts): update copyright to 2024 --- charts/bpdm/.helmignore | 19 ++++++++++++++++++ charts/bpdm/CHANGELOG.md | 1 + charts/bpdm/Chart.yaml | 14 ++++++------- charts/bpdm/README.md | 12 +++++++++++ .../bpdm/charts/bpdm-bridge-dummy/.helmignore | 19 ++++++++++++++++++ .../charts/bpdm-bridge-dummy/CHANGELOG.md | 15 +++++++++++++- .../bpdm/charts/bpdm-bridge-dummy/Chart.yaml | 4 ++-- .../bpdm/charts/bpdm-bridge-dummy/README.md | 11 ++++++++++ .../bpdm-bridge-dummy/templates/NOTES.txt | 10 ++++++++++ .../bpdm-bridge-dummy/templates/_helpers.tpl | 2 +- .../templates/configMap.yaml | 2 +- .../templates/deployment.yaml | 3 ++- .../bpdm-bridge-dummy/templates/ingress.yaml | 6 ++++-- .../bpdm-bridge-dummy/templates/secret.yaml | 3 ++- .../bpdm-bridge-dummy/templates/service.yaml | 3 ++- .../bpdm/charts/bpdm-bridge-dummy/values.yaml | 2 +- .../bpdm-cleaning-service-dummy/.helmignore | 20 +++++++++++++++++++ .../bpdm-cleaning-service-dummy/CHANGELOG.md | 15 +++++++++++++- .../bpdm-cleaning-service-dummy/Chart.yaml | 4 ++-- .../bpdm-cleaning-service-dummy/README.md | 11 ++++++++++ .../templates/NOTES.txt | 12 +++++++++++ .../templates/_helpers.tpl | 2 +- .../templates/configMap.yaml | 2 +- .../templates/deployment.yaml | 3 ++- .../templates/secret.yaml | 3 ++- .../templates/service.yaml | 3 ++- .../bpdm-cleaning-service-dummy/values.yaml | 2 +- charts/bpdm/charts/bpdm-gate/.helmignore | 19 ++++++++++++++++++ charts/bpdm/charts/bpdm-gate/CHANGELOG.md | 15 +++++++++++++- charts/bpdm/charts/bpdm-gate/Chart.yaml | 4 ++-- charts/bpdm/charts/bpdm-gate/README.md | 11 ++++++++++ .../bpdm/charts/bpdm-gate/templates/NOTES.txt | 12 +++++++++++ .../charts/bpdm-gate/templates/_helpers.tpl | 2 +- .../charts/bpdm-gate/templates/configMap.yaml | 2 +- .../bpdm-gate/templates/deployment.yaml | 3 ++- .../charts/bpdm-gate/templates/ingress.yaml | 3 ++- .../charts/bpdm-gate/templates/secret.yaml | 3 ++- .../charts/bpdm-gate/templates/service.yaml | 3 ++- charts/bpdm/charts/bpdm-gate/values.yaml | 2 +- .../bpdm/charts/bpdm-orchestrator/.helmignore | 19 ++++++++++++++++++ .../charts/bpdm-orchestrator/CHANGELOG.md | 15 +++++++++++++- .../bpdm/charts/bpdm-orchestrator/Chart.yaml | 4 ++-- .../bpdm/charts/bpdm-orchestrator/README.md | 11 ++++++++++ .../bpdm-orchestrator/templates/NOTES.txt | 11 ++++++++++ .../bpdm-orchestrator/templates/_helpers.tpl | 2 +- .../templates/configMap.yaml | 2 +- .../templates/deployment.yaml | 3 ++- .../bpdm-orchestrator/templates/ingress.yaml | 3 ++- .../bpdm-orchestrator/templates/secret.yaml | 3 ++- .../bpdm-orchestrator/templates/service.yaml | 3 ++- .../bpdm/charts/bpdm-orchestrator/values.yaml | 2 +- charts/bpdm/charts/bpdm-pool/.helmignore | 19 ++++++++++++++++++ charts/bpdm/charts/bpdm-pool/CHANGELOG.md | 13 ++++++++++++ charts/bpdm/charts/bpdm-pool/Chart.yaml | 4 ++-- charts/bpdm/charts/bpdm-pool/README.md | 12 +++++++++++ .../bpdm/charts/bpdm-pool/templates/NOTES.txt | 11 ++++++++++ .../charts/bpdm-pool/templates/_helpers.tpl | 2 +- .../charts/bpdm-pool/templates/configMap.yaml | 3 ++- .../bpdm-pool/templates/deployment.yaml | 3 ++- .../charts/bpdm-pool/templates/ingress.yaml | 3 ++- .../charts/bpdm-pool/templates/secret.yaml | 3 ++- .../charts/bpdm-pool/templates/service.yaml | 3 ++- charts/bpdm/charts/bpdm-pool/values.yaml | 2 +- charts/bpdm/values.yaml | 20 +++++++++++++++++++ charts/config/chart-testing-config.yaml | 2 +- 65 files changed, 403 insertions(+), 57 deletions(-) diff --git a/charts/bpdm/.helmignore b/charts/bpdm/.helmignore index aa931b8f0..2cc15165a 100644 --- a/charts/bpdm/.helmignore +++ b/charts/bpdm/.helmignore @@ -1,3 +1,22 @@ +################################################################################ +# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 +################################################################################ + # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. diff --git a/charts/bpdm/CHANGELOG.md b/charts/bpdm/CHANGELOG.md index 90348d93b..172fa55e2 100644 --- a/charts/bpdm/CHANGELOG.md +++ b/charts/bpdm/CHANGELOG.md @@ -14,6 +14,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), - update BPDM Orchestrator Chart to version 2.0.0 - update BPDM Cleaning Service Dummy Chart to version 2.0.0 - update BPDM Bridge Chart to version 2.0.0 +- update copyright for 2024 ## [3.1.2] - 2023-11-16 diff --git a/charts/bpdm/Chart.yaml b/charts/bpdm/Chart.yaml index 388b3e7b6..92a66dd73 100644 --- a/charts/bpdm/Chart.yaml +++ b/charts/bpdm/Chart.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. @@ -22,7 +22,7 @@ apiVersion: v2 name: bpdm type: application description: A Helm chart for Kubernetes that deploys the BPDM applications -version: 4.0.0-alpha.7 +version: 4.0.0-alpha.8 appVersion: "5.0.0-alpha.6" home: https://github.com/eclipse-tractusx/bpdm sources: @@ -33,23 +33,23 @@ maintainers: dependencies: - name: bpdm-gate - version: 5.0.0-alpha.7 + version: 5.0.0-alpha.8 alias: bpdm-gate condition: bpdm-gate.enabled - name: bpdm-pool - version: 6.0.0-alpha.7 + version: 6.0.0-alpha.8 alias: bpdm-pool condition: bpdm-pool.enabled - name: bpdm-bridge-dummy - version: 2.0.0-alpha.7 + version: 2.0.0-alpha.8 alias: bpdm-bridge-dummy condition: bpdm-bridge-dummy.enabled - name: bpdm-cleaning-service-dummy - version: 2.0.0-alpha.7 + version: 2.0.0-alpha.8 alias: bpdm-cleaning-service-dummy condition: bpdm-cleaning-service-dummy.enabled - name: bpdm-orchestrator - version: 2.0.0-alpha.7 + version: 2.0.0-alpha.8 alias: bpdm-orchestrator condition: bpdm-orchestrator.enabled - name: postgresql diff --git a/charts/bpdm/README.md b/charts/bpdm/README.md index 090d601a3..fc7592b4c 100644 --- a/charts/bpdm/README.md +++ b/charts/bpdm/README.md @@ -59,3 +59,15 @@ applicationConfig: postgres: enabled: false ``` + +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/.helmignore b/charts/bpdm/charts/bpdm-bridge-dummy/.helmignore index aa931b8f0..2cc15165a 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/.helmignore +++ b/charts/bpdm/charts/bpdm-bridge-dummy/.helmignore @@ -1,3 +1,22 @@ +################################################################################ +# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 +################################################################################ + # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/CHANGELOG.md b/charts/bpdm/charts/bpdm-bridge-dummy/CHANGELOG.md index 492928963..0288636ff 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/CHANGELOG.md +++ b/charts/bpdm/charts/bpdm-bridge-dummy/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), - update application version to 5.0.0 - increase container's default groupid to 10001 - container is now executed with read-only root file systems +- update copyright for 2024 ## [1.1.0] - 2023-11-03 @@ -34,4 +35,16 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), ### Added -- postgres chart dependency for persistence \ No newline at end of file +- postgres chart dependency for persistence + +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/Chart.yaml b/charts/bpdm/charts/bpdm-bridge-dummy/Chart.yaml index 01ae3cf6c..6f6160fd7 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/Chart.yaml +++ b/charts/bpdm/charts/bpdm-bridge-dummy/Chart.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. @@ -22,7 +22,7 @@ apiVersion: v2 type: application name: bpdm-bridge-dummy appVersion: "5.0.0-alpha.6" -version: 2.0.0-alpha.7 +version: 2.0.0-alpha.8 description: A Helm chart for deploying the BPDM bridge dummy service home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View sources: diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/README.md b/charts/bpdm/charts/bpdm-bridge-dummy/README.md index 286d2d980..3293a3406 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/README.md +++ b/charts/bpdm/charts/bpdm-bridge-dummy/README.md @@ -93,3 +93,14 @@ applicationSecrets: secret: your_client_secret ``` +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/templates/NOTES.txt b/charts/bpdm/charts/bpdm-bridge-dummy/templates/NOTES.txt index 64c52e5c1..6589be285 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/templates/NOTES.txt +++ b/charts/bpdm/charts/bpdm-bridge-dummy/templates/NOTES.txt @@ -14,3 +14,13 @@ echo "Visit http://127.0.0.1:8080 to use your application" kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT {{- end }} + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/templates/_helpers.tpl b/charts/bpdm/charts/bpdm-bridge-dummy/templates/_helpers.tpl index a18c4dc67..bf75213f6 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/templates/_helpers.tpl +++ b/charts/bpdm/charts/bpdm-bridge-dummy/templates/_helpers.tpl @@ -1,5 +1,5 @@ {{/* -Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/templates/configMap.yaml b/charts/bpdm/charts/bpdm-bridge-dummy/templates/configMap.yaml index 8c3107699..aff9de4b8 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/templates/configMap.yaml +++ b/charts/bpdm/charts/bpdm-bridge-dummy/templates/configMap.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/templates/deployment.yaml b/charts/bpdm/charts/bpdm-bridge-dummy/templates/deployment.yaml index ffd54e658..c79e578ba 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/templates/deployment.yaml +++ b/charts/bpdm/charts/bpdm-bridge-dummy/templates/deployment.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/templates/ingress.yaml b/charts/bpdm/charts/bpdm-bridge-dummy/templates/ingress.yaml index aba12cd58..2965204e9 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/templates/ingress.yaml +++ b/charts/bpdm/charts/bpdm-bridge-dummy/templates/ingress.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. @@ -17,7 +18,8 @@ # SPDX-License-Identifier: Apache-2.0 ################################################################################ -{{ if .Values.ingress.enabled }} + + {{ if .Values.ingress.enabled }} {{- $fullName := include "bpdm.fullname" . -}} diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/templates/secret.yaml b/charts/bpdm/charts/bpdm-bridge-dummy/templates/secret.yaml index 5917f9b57..f53bbbc86 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/templates/secret.yaml +++ b/charts/bpdm/charts/bpdm-bridge-dummy/templates/secret.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/templates/service.yaml b/charts/bpdm/charts/bpdm-bridge-dummy/templates/service.yaml index 71950d5f7..ad12328b9 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/templates/service.yaml +++ b/charts/bpdm/charts/bpdm-bridge-dummy/templates/service.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-bridge-dummy/values.yaml b/charts/bpdm/charts/bpdm-bridge-dummy/values.yaml index 9b6622c09..544466e00 100644 --- a/charts/bpdm/charts/bpdm-bridge-dummy/values.yaml +++ b/charts/bpdm/charts/bpdm-bridge-dummy/values.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/.helmignore b/charts/bpdm/charts/bpdm-cleaning-service-dummy/.helmignore index aa931b8f0..6085ec219 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/.helmignore +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/.helmignore @@ -1,3 +1,23 @@ +--- +################################################################################ +# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 +################################################################################ + # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/CHANGELOG.md b/charts/bpdm/charts/bpdm-cleaning-service-dummy/CHANGELOG.md index 47046c8f5..2ce067e74 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/CHANGELOG.md +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), - Update application version to 5.0.0 - increase container's default groupid to 10001 - container is now executed with read-only root file systems +- update copyright for 2024 ## [1.0.2] - 2023-11-23 @@ -28,4 +29,16 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), ### Added -- Chart for BPDM application cleaning service dummy \ No newline at end of file +- Chart for BPDM application cleaning service dummy + +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/Chart.yaml b/charts/bpdm/charts/bpdm-cleaning-service-dummy/Chart.yaml index 57e5b7224..c6274cdcb 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/Chart.yaml +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/Chart.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. @@ -22,7 +22,7 @@ apiVersion: v2 type: application name: bpdm-cleaning-service-dummy appVersion: "5.0.0-alpha.6" -version: 2.0.0-alpha.7 +version: 2.0.0-alpha.8 description: A Helm chart for deploying the BPDM cleaning service home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View sources: diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/README.md b/charts/bpdm/charts/bpdm-cleaning-service-dummy/README.md index c2a307a2c..67e1e2197 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/README.md +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/README.md @@ -92,3 +92,14 @@ applicationSecrets: secret: your_client_secret ``` +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/NOTES.txt b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/NOTES.txt index 64c52e5c1..c98376ba2 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/NOTES.txt +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/NOTES.txt @@ -14,3 +14,15 @@ echo "Visit http://127.0.0.1:8080 to use your application" kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT {{- end }} + +Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/_helpers.tpl b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/_helpers.tpl index ec701d76b..6ea6e671d 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/_helpers.tpl +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/_helpers.tpl @@ -1,5 +1,5 @@ {{/* -Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/configMap.yaml b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/configMap.yaml index 8719b06b6..9686b4df0 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/configMap.yaml +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/configMap.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/deployment.yaml b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/deployment.yaml index a3b830e9e..0a23567af 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/deployment.yaml +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/deployment.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/secret.yaml b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/secret.yaml index 5917f9b57..f53bbbc86 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/secret.yaml +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/secret.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/service.yaml b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/service.yaml index 71950d5f7..ad12328b9 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/service.yaml +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/templates/service.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-cleaning-service-dummy/values.yaml b/charts/bpdm/charts/bpdm-cleaning-service-dummy/values.yaml index 3b3999b7f..1d92425a3 100644 --- a/charts/bpdm/charts/bpdm-cleaning-service-dummy/values.yaml +++ b/charts/bpdm/charts/bpdm-cleaning-service-dummy/values.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-gate/.helmignore b/charts/bpdm/charts/bpdm-gate/.helmignore index aa931b8f0..2cc15165a 100644 --- a/charts/bpdm/charts/bpdm-gate/.helmignore +++ b/charts/bpdm/charts/bpdm-gate/.helmignore @@ -1,3 +1,22 @@ +################################################################################ +# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 +################################################################################ + # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. diff --git a/charts/bpdm/charts/bpdm-gate/CHANGELOG.md b/charts/bpdm/charts/bpdm-gate/CHANGELOG.md index 6464250dc..a3365f399 100644 --- a/charts/bpdm/charts/bpdm-gate/CHANGELOG.md +++ b/charts/bpdm/charts/bpdm-gate/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), - Update application version to 5.0.0 - increase container's default groupid to 10001 - container is now executed with read-only root file systems +- update copyright for 2024 ## [4.1.0] - 2023-11-03 @@ -97,4 +98,16 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), ## Changed -- Update application version to 3.0.0 \ No newline at end of file +- Update application version to 3.0.0 + +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-gate/Chart.yaml b/charts/bpdm/charts/bpdm-gate/Chart.yaml index bbe1e0ec7..7336986b7 100644 --- a/charts/bpdm/charts/bpdm-gate/Chart.yaml +++ b/charts/bpdm/charts/bpdm-gate/Chart.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. @@ -22,7 +22,7 @@ apiVersion: v2 type: application name: bpdm-gate appVersion: "5.0.0-alpha.6" -version: 5.0.0-alpha.7 +version: 5.0.0-alpha.8 description: A Helm chart for deploying the BPDM gate service home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View sources: diff --git a/charts/bpdm/charts/bpdm-gate/README.md b/charts/bpdm/charts/bpdm-gate/README.md index 68e8d361d..2f151b235 100644 --- a/charts/bpdm/charts/bpdm-gate/README.md +++ b/charts/bpdm/charts/bpdm-gate/README.md @@ -96,3 +96,14 @@ applicationSecrets: secret: your_client_secret ``` +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm diff --git a/charts/bpdm/charts/bpdm-gate/templates/NOTES.txt b/charts/bpdm/charts/bpdm-gate/templates/NOTES.txt index 64c52e5c1..c98376ba2 100644 --- a/charts/bpdm/charts/bpdm-gate/templates/NOTES.txt +++ b/charts/bpdm/charts/bpdm-gate/templates/NOTES.txt @@ -14,3 +14,15 @@ echo "Visit http://127.0.0.1:8080 to use your application" kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT {{- end }} + +Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm diff --git a/charts/bpdm/charts/bpdm-gate/templates/_helpers.tpl b/charts/bpdm/charts/bpdm-gate/templates/_helpers.tpl index 056eb70ad..fd62375d9 100644 --- a/charts/bpdm/charts/bpdm-gate/templates/_helpers.tpl +++ b/charts/bpdm/charts/bpdm-gate/templates/_helpers.tpl @@ -1,5 +1,5 @@ {{/* -Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-gate/templates/configMap.yaml b/charts/bpdm/charts/bpdm-gate/templates/configMap.yaml index f3a854978..aca558d88 100644 --- a/charts/bpdm/charts/bpdm-gate/templates/configMap.yaml +++ b/charts/bpdm/charts/bpdm-gate/templates/configMap.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-gate/templates/deployment.yaml b/charts/bpdm/charts/bpdm-gate/templates/deployment.yaml index 40f2d91fb..debd01de4 100644 --- a/charts/bpdm/charts/bpdm-gate/templates/deployment.yaml +++ b/charts/bpdm/charts/bpdm-gate/templates/deployment.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-gate/templates/ingress.yaml b/charts/bpdm/charts/bpdm-gate/templates/ingress.yaml index 6649544a0..30e9cfd63 100644 --- a/charts/bpdm/charts/bpdm-gate/templates/ingress.yaml +++ b/charts/bpdm/charts/bpdm-gate/templates/ingress.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-gate/templates/secret.yaml b/charts/bpdm/charts/bpdm-gate/templates/secret.yaml index 5917f9b57..f53bbbc86 100644 --- a/charts/bpdm/charts/bpdm-gate/templates/secret.yaml +++ b/charts/bpdm/charts/bpdm-gate/templates/secret.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-gate/templates/service.yaml b/charts/bpdm/charts/bpdm-gate/templates/service.yaml index 71950d5f7..ad12328b9 100644 --- a/charts/bpdm/charts/bpdm-gate/templates/service.yaml +++ b/charts/bpdm/charts/bpdm-gate/templates/service.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-gate/values.yaml b/charts/bpdm/charts/bpdm-gate/values.yaml index 106d0e9bf..09e9db98d 100644 --- a/charts/bpdm/charts/bpdm-gate/values.yaml +++ b/charts/bpdm/charts/bpdm-gate/values.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-orchestrator/.helmignore b/charts/bpdm/charts/bpdm-orchestrator/.helmignore index aa931b8f0..2cc15165a 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/.helmignore +++ b/charts/bpdm/charts/bpdm-orchestrator/.helmignore @@ -1,3 +1,22 @@ +################################################################################ +# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 +################################################################################ + # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. diff --git a/charts/bpdm/charts/bpdm-orchestrator/CHANGELOG.md b/charts/bpdm/charts/bpdm-orchestrator/CHANGELOG.md index c419b8652..958de83a0 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/CHANGELOG.md +++ b/charts/bpdm/charts/bpdm-orchestrator/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), - Update application version to 5.0.0 - increase container's default groupid to 10001 - container is now executed with read-only root file systems +- update copyright for 2024 ## [1.0.1] - 2023-11-23 @@ -22,4 +23,16 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), ### Added -- Chart for BPDM application orchestrator \ No newline at end of file +- Chart for BPDM application orchestrator + +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-orchestrator/Chart.yaml b/charts/bpdm/charts/bpdm-orchestrator/Chart.yaml index 912c33944..a7b8483a0 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/Chart.yaml +++ b/charts/bpdm/charts/bpdm-orchestrator/Chart.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. @@ -22,7 +22,7 @@ apiVersion: v2 type: application name: bpdm-orchestrator appVersion: "5.0.0-alpha.6" -version: 2.0.0-alpha.7 +version: 2.0.0-alpha.8 description: A Helm chart for deploying the BPDM Orchestrator service home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View sources: diff --git a/charts/bpdm/charts/bpdm-orchestrator/README.md b/charts/bpdm/charts/bpdm-orchestrator/README.md index 2a6096b70..a67c2ae08 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/README.md +++ b/charts/bpdm/charts/bpdm-orchestrator/README.md @@ -83,3 +83,14 @@ applicationSecrets: secret: your_client_secret ``` +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm diff --git a/charts/bpdm/charts/bpdm-orchestrator/templates/NOTES.txt b/charts/bpdm/charts/bpdm-orchestrator/templates/NOTES.txt index 64c52e5c1..345f693b0 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/templates/NOTES.txt +++ b/charts/bpdm/charts/bpdm-orchestrator/templates/NOTES.txt @@ -14,3 +14,14 @@ echo "Visit http://127.0.0.1:8080 to use your application" kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT {{- end }} + +Notice +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-orchestrator/templates/_helpers.tpl b/charts/bpdm/charts/bpdm-orchestrator/templates/_helpers.tpl index 9eee5620c..a46ee84f6 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/templates/_helpers.tpl +++ b/charts/bpdm/charts/bpdm-orchestrator/templates/_helpers.tpl @@ -1,5 +1,5 @@ {{/* -Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-orchestrator/templates/configMap.yaml b/charts/bpdm/charts/bpdm-orchestrator/templates/configMap.yaml index 6ed463600..69adb23e1 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/templates/configMap.yaml +++ b/charts/bpdm/charts/bpdm-orchestrator/templates/configMap.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-orchestrator/templates/deployment.yaml b/charts/bpdm/charts/bpdm-orchestrator/templates/deployment.yaml index 2e2c835d2..084a1d808 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/templates/deployment.yaml +++ b/charts/bpdm/charts/bpdm-orchestrator/templates/deployment.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-orchestrator/templates/ingress.yaml b/charts/bpdm/charts/bpdm-orchestrator/templates/ingress.yaml index aba12cd58..7fcb0f07f 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/templates/ingress.yaml +++ b/charts/bpdm/charts/bpdm-orchestrator/templates/ingress.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-orchestrator/templates/secret.yaml b/charts/bpdm/charts/bpdm-orchestrator/templates/secret.yaml index 5917f9b57..f53bbbc86 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/templates/secret.yaml +++ b/charts/bpdm/charts/bpdm-orchestrator/templates/secret.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-orchestrator/templates/service.yaml b/charts/bpdm/charts/bpdm-orchestrator/templates/service.yaml index 71950d5f7..ad12328b9 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/templates/service.yaml +++ b/charts/bpdm/charts/bpdm-orchestrator/templates/service.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-orchestrator/values.yaml b/charts/bpdm/charts/bpdm-orchestrator/values.yaml index 891e6d29a..2dc17f216 100644 --- a/charts/bpdm/charts/bpdm-orchestrator/values.yaml +++ b/charts/bpdm/charts/bpdm-orchestrator/values.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-pool/.helmignore b/charts/bpdm/charts/bpdm-pool/.helmignore index aa931b8f0..2cc15165a 100644 --- a/charts/bpdm/charts/bpdm-pool/.helmignore +++ b/charts/bpdm/charts/bpdm-pool/.helmignore @@ -1,3 +1,22 @@ +################################################################################ +# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 +################################################################################ + # Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. diff --git a/charts/bpdm/charts/bpdm-pool/CHANGELOG.md b/charts/bpdm/charts/bpdm-pool/CHANGELOG.md index 6cbe8ae27..88d8e32e6 100644 --- a/charts/bpdm/charts/bpdm-pool/CHANGELOG.md +++ b/charts/bpdm/charts/bpdm-pool/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), - Update application version to 5.0.0 - increase container's default groupid to 10001 - container is now executed with read-only root file systems +- update copyright for 2024 ## [5.1.1] - 2023-11-16 @@ -102,3 +103,15 @@ The format is based on Keep a Changelog (https://keepachangelog.com/en/1.0.0/), ## Changed - AppVersion to 3.0.0 + +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-pool/Chart.yaml b/charts/bpdm/charts/bpdm-pool/Chart.yaml index e7a1e98be..dd21baf45 100644 --- a/charts/bpdm/charts/bpdm-pool/Chart.yaml +++ b/charts/bpdm/charts/bpdm-pool/Chart.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. @@ -22,7 +22,7 @@ apiVersion: v2 type: application name: bpdm-pool appVersion: "5.0.0-alpha.6" -version: 6.0.0-alpha.7 +version: 6.0.0-alpha.8 description: A Helm chart for deploying the BPDM pool service home: https://eclipse-tractusx.github.io/docs/kits/Business%20Partner%20Kit/Adoption%20View sources: diff --git a/charts/bpdm/charts/bpdm-pool/README.md b/charts/bpdm/charts/bpdm-pool/README.md index 3234c2344..c726e2e83 100644 --- a/charts/bpdm/charts/bpdm-pool/README.md +++ b/charts/bpdm/charts/bpdm-pool/README.md @@ -120,3 +120,15 @@ applicationConfig: postgres: enabled: false ``` + +## Notice + +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-pool/templates/NOTES.txt b/charts/bpdm/charts/bpdm-pool/templates/NOTES.txt index 64c52e5c1..345f693b0 100644 --- a/charts/bpdm/charts/bpdm-pool/templates/NOTES.txt +++ b/charts/bpdm/charts/bpdm-pool/templates/NOTES.txt @@ -14,3 +14,14 @@ echo "Visit http://127.0.0.1:8080 to use your application" kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT {{- end }} + +Notice +This work is licensed under the [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0). + +- SPDX-License-Identifier: Apache-2.0 +- SPDX-FileCopyrightText: 2023,2023 ZF Friedrichshafen AG +- SPDX-FileCopyrightText: 2023,2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) +- SPDX-FileCopyrightText: 2023,2023 Mercedes Benz Group +- SPDX-FileCopyrightText: 2023,2023 Schaeffler AG +- SPDX-FileCopyrightText: 2023,2023 Contributors to the Eclipse Foundation +- Source URL: https://github.com/eclipse-tractusx/bpdm \ No newline at end of file diff --git a/charts/bpdm/charts/bpdm-pool/templates/_helpers.tpl b/charts/bpdm/charts/bpdm-pool/templates/_helpers.tpl index 2f74b33ba..81a98012e 100644 --- a/charts/bpdm/charts/bpdm-pool/templates/_helpers.tpl +++ b/charts/bpdm/charts/bpdm-pool/templates/_helpers.tpl @@ -1,5 +1,5 @@ {{/* -Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-pool/templates/configMap.yaml b/charts/bpdm/charts/bpdm-pool/templates/configMap.yaml index d3d379d7a..91ad48287 100644 --- a/charts/bpdm/charts/bpdm-pool/templates/configMap.yaml +++ b/charts/bpdm/charts/bpdm-pool/templates/configMap.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-pool/templates/deployment.yaml b/charts/bpdm/charts/bpdm-pool/templates/deployment.yaml index fe300f674..54b8bc05b 100644 --- a/charts/bpdm/charts/bpdm-pool/templates/deployment.yaml +++ b/charts/bpdm/charts/bpdm-pool/templates/deployment.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-pool/templates/ingress.yaml b/charts/bpdm/charts/bpdm-pool/templates/ingress.yaml index aba12cd58..7fcb0f07f 100644 --- a/charts/bpdm/charts/bpdm-pool/templates/ingress.yaml +++ b/charts/bpdm/charts/bpdm-pool/templates/ingress.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-pool/templates/secret.yaml b/charts/bpdm/charts/bpdm-pool/templates/secret.yaml index 5917f9b57..f53bbbc86 100644 --- a/charts/bpdm/charts/bpdm-pool/templates/secret.yaml +++ b/charts/bpdm/charts/bpdm-pool/templates/secret.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-pool/templates/service.yaml b/charts/bpdm/charts/bpdm-pool/templates/service.yaml index 6e4175f0b..7b2b213ed 100644 --- a/charts/bpdm/charts/bpdm-pool/templates/service.yaml +++ b/charts/bpdm/charts/bpdm-pool/templates/service.yaml @@ -1,5 +1,6 @@ +--- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/charts/bpdm-pool/values.yaml b/charts/bpdm/charts/bpdm-pool/values.yaml index fdbe90683..6171d331b 100644 --- a/charts/bpdm/charts/bpdm-pool/values.yaml +++ b/charts/bpdm/charts/bpdm-pool/values.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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. diff --git a/charts/bpdm/values.yaml b/charts/bpdm/values.yaml index f8044e519..d4ecb1165 100644 --- a/charts/bpdm/values.yaml +++ b/charts/bpdm/values.yaml @@ -1,3 +1,23 @@ +--- +################################################################################ +# Copyright (c) 2021,2024 Contributors to the Eclipse Foundation +# +# See the NOTICE file(s) distributed with this work for additional +# information regarding copyright ownership. +# +# This program and the accompanying materials are made available under the +# terms of the Apache License, Version 2.0 which is available at +# https://www.apache.org/licenses/LICENSE-2.0. +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +# SPDX-License-Identifier: Apache-2.0 +################################################################################ + bpdm-gate: enabled: true postgres: diff --git a/charts/config/chart-testing-config.yaml b/charts/config/chart-testing-config.yaml index d1b6d089b..5835ea32a 100644 --- a/charts/config/chart-testing-config.yaml +++ b/charts/config/chart-testing-config.yaml @@ -1,6 +1,6 @@ --- ################################################################################ -# Copyright (c) 2021,2023 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.