From 21bedfdadc2558a4956e84e2dd9acc9a9a6ddac7 Mon Sep 17 00:00:00 2001 From: adityagajbhiye9 <133367448+adityagajbhiye9@users.noreply.github.com> Date: Thu, 16 May 2024 12:06:16 +0530 Subject: [PATCH 1/2] chore corrected the urls - helm lint workflow update. - urls corrected. --- .github/workflows/helm-lint.yml | 10 ++++++++-- NOTICE.md | 4 ++-- README.md | 2 +- charts/simpledataexchanger/Chart.yaml | 2 +- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/helm-lint.yml b/.github/workflows/helm-lint.yml index 18ef37c..01e8112 100644 --- a/.github/workflows/helm-lint.yml +++ b/.github/workflows/helm-lint.yml @@ -43,9 +43,15 @@ on: upgrade_from: description: 'chart version to upgrade from' # chart version from 3.2 release as default - default: '0.1.6' + default: '0.1.7' required: false type: string + helm_version: + description: 'helm version to test (default = latest)' + default: 'latest' + required: false + type: string + jobs: lint-test: @@ -97,7 +103,7 @@ jobs: run: | helm repo add bitnami https://charts.bitnami.com/bitnami helm repo add tractusx-dev https://eclipse-tractusx.github.io/charts/dev - helm install simpledataexchanger tractusx-dev/sde --version ${{ github.event.inputs.upgrade_from || '0.1.6' }} + helm install simpledataexchanger tractusx-dev/sde --version ${{ github.event.inputs.upgrade_from || '0.1.7' }} helm dependency update charts/simpledataexchanger helm upgrade simpledataexchanger charts/simpledataexchanger if: github.event_name != 'pull_request' || steps.list-changed.outputs.changed == 'true' diff --git a/NOTICE.md b/NOTICE.md index a427f02..115d460 100644 --- a/NOTICE.md +++ b/NOTICE.md @@ -29,8 +29,8 @@ SPDX-License-Identifier: Apache-2.0 The project maintains the following source code repositories in the GitHub organization https://github.com/eclipse-tractusx: -* https://github.com/catenax-ng/tx-managed-simple-data-exchanger-backend -* https://github.com/catenax-ng/tx-managed-simple-data-exchanger-frontend +* https://github.com/eclipse-tractusx/managed-simple-data-exchanger-backend +* https://github.com/eclipse-tractusx/managed-simple-data-exchanger-frontend ## Third-party Content diff --git a/README.md b/README.md index f9a6160..2ad61a4 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To install the chart with the release name portal: For used licenses, please see the [NOTICE](https://github.com/eclipse-tractusx/managed-simple-data-exchanger/blob/main/NOTICE.md). ### Documentation - Docs reference link can be found here [docs](https://github.com/catenax-ng/tx-managed-simple-data-exchanger/blob/main/docs/install.md). + Docs reference link can be found here [docs](https://github.com/eclipse-tractusx/managed-simple-data-exchanger/blob/main/docs/Install.md). ## Notice for Docker image diff --git a/charts/simpledataexchanger/Chart.yaml b/charts/simpledataexchanger/Chart.yaml index 3fe90a3..263ad57 100644 --- a/charts/simpledataexchanger/Chart.yaml +++ b/charts/simpledataexchanger/Chart.yaml @@ -32,7 +32,7 @@ sources: # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.7 +version: 0.1.8 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. From 67c0f74f23ef9b8275883778c1f5b27c6c967fbb Mon Sep 17 00:00:00 2001 From: adityagajbhiye9 <133367448+adityagajbhiye9@users.noreply.github.com> Date: Thu, 16 May 2024 12:27:20 +0530 Subject: [PATCH 2/2] updated workflow lint for kindest node image --- .github/workflows/helm-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helm-lint.yml b/.github/workflows/helm-lint.yml index 01e8112..190c71f 100644 --- a/.github/workflows/helm-lint.yml +++ b/.github/workflows/helm-lint.yml @@ -37,7 +37,7 @@ on: node_image: description: 'kindest/node image for k8s kind cluster' # k8s version from 3.2 release as default - default: 'kindest/node:v1.27.3' + default: 'kindest/node:v1.27.13' required: false type: string upgrade_from: @@ -68,7 +68,7 @@ jobs: # upgrade version, default (v0.17.0) uses node image v1.21.1 and doesn't work with more recent node image versions version: v0.20.0 # default value for event_name != workflow_dispatch - node_image: ${{ github.event.inputs.node_image || 'kindest/node:v1.27.3' }} + node_image: ${{ github.event.inputs.node_image || 'kindest/node:v1.27.13' }} - name: Set up Helm uses: azure/setup-helm@v3