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

chore updated helm-lint workflow and corrected urls #44

Merged
merged 2 commits into from
May 16, 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
14 changes: 10 additions & 4 deletions .github/workflows/helm-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,21 @@ 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:
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:
Expand All @@ -62,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
Expand Down Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion charts/simpledataexchanger/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading