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|helmchart-v0.1.2] vulnerability,helm-lint &backend condition fix. #28

Merged
merged 1 commit into from
Dec 4, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/helm-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ on:
upgrade_from:
description: 'chart version to upgrade from'
# chart version from 3.2 release as default
default: '0.1.0'
default: '0.1.1'
required: false
type: string

Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
run: ct lint --validate-maintainers=false --target-branch ${{ github.event.repository.default_branch }}

- name: Run chart-testing (install)
run: ct install --charts charts/app-dashboard
run: ct install --charts charts/simpledataexchanger
if: github.event_name != 'pull_request' || steps.list-changed.outputs.changed == 'true'

# Upgrade the released chart version with the locally available chart
Expand All @@ -97,7 +97,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 charts/sde --version ${{ github.event.inputs.upgrade_from || '0.1.0' }}
helm install simpledataexchanger charts/sde --version ${{ github.event.inputs.upgrade_from || '0.1.1' }}
helm dependency update charts/simpledataexchanger
helm upgrade impledataexchanger charts/simpledataexchanger
if: github.event_name != 'pull_request' || steps.list-changed.outputs.changed == 'true'
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

New features, fixed bugs, known defects and other noteworthy changes to each release of the Simple-Data-Exchanger helm chart.

## 0.1.2
### Change
* changed to v2.3.2 docker image version.
* veracode vulnerability fix in AppV- 2.3.2.
* updated backend-deployment.yaml for condition check.
* helm lint workflow fix for dependency.

## 0.1.1
### Change
* helm-lint workflow corrected.
Expand Down
4 changes: 2 additions & 2 deletions charts/simpledataexchanger/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ 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.1
version: 0.1.2
# 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.
# It is recommended to use it with quotes.
appVersion: "2.3.1"
appVersion: "2.3.2"

dependencies:
- condition: sdepostgresql.enabled
Expand Down
2 changes: 1 addition & 1 deletion charts/simpledataexchanger/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sde

![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.1](https://img.shields.io/badge/AppVersion-2.3.1-informational?style=flat-square)
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.2](https://img.shields.io/badge/AppVersion-2.3.2-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down
2 changes: 1 addition & 1 deletion docs/Install.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sde

![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.1](https://img.shields.io/badge/AppVersion-2.3.1-informational?style=flat-square)
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.3.2](https://img.shields.io/badge/AppVersion-2.3.2-informational?style=flat-square)

A Helm chart for Kubernetes

Expand Down
Loading