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

release-chart-7.0.1 - fix rename irs helm chart #548

Merged
merged 7 commits into from
Apr 17, 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
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ https://github.com/google/google-java-format/blob/master/README.md#intellij-jre-

### Create a Release

#### Full release

1. Choose a release version using [semantic versioning](https://semver.org/spec/v2.0.0.html)
and create a corresponding branch according to the template: `chore/prepare-release-x.x.x`.
2. Add release notes for new version in [CHANGELOG.md](CHANGELOG.md)
Expand Down Expand Up @@ -196,6 +198,16 @@ https://github.com/google/google-java-format/blob/master/README.md#intellij-jre-

_(replace x.x.x with IRS version to release, y.y.y with IRS helm version to release and w.w.w with previous IRS version)_

#### Release chart only

1. Choose a release version using [semantic versioning](https://semver.org/spec/v2.0.0.html)
and create a corresponding branch according to the template: `chore/release-chart-x.x.x`.
2. Add new version to [charts/item-relationship-service/CHANGELOG.md](charts/item-relationship-service/CHANGELOG.md)
3. Change chart version in [Chart.yaml](charts/item-relationship-service/Chart.yaml)
4. Create pull request from [release preparation branch to main](https://github.com/eclipse-tractusx/item-relationship-service/compare/chore/release-chart-x.x.x)
5. Merge this pull request to main.
6. Wait for release workflow to complete.


## Contact

Expand Down
12 changes: 12 additions & 0 deletions charts/item-relationship-service/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fix for incomplete renaming of Helm chart (see #489)



## [7.0.1] - 2024-04-17

### Fixed

- Renamed item relationship service Helm chart from "irs-helm" to "item-relationship-service" (Fix). #489


## [7.0.0] - 2024-04-16

Expand Down
2 changes: 1 addition & 1 deletion charts/item-relationship-service/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type: application
# 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: 7.0.0
version: 7.0.1
# 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
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ data:
irs-edc-client:
callback:
mapping: {{ .Values.edc.callbackMapping | default "/internal/endpoint-data-reference" | quote }}
callback-url: {{ tpl (.Values.edc.callbackurl | default (printf "http://%s%s" .Release.Name "-irs-helm:8181/internal/endpoint-data-reference")) . | quote }}
callback-url: {{ tpl (.Values.edc.callbackurl | default (printf "http://%s%s" .Release.Name "-item-relationship-service:8181/internal/endpoint-data-reference")) . | quote }}
asyncTimeout: {{ tpl .Values.edc.asyncTimeout . | default "PT10M" | quote }}
controlplane:
request-ttl: {{ .Values.edc.controlplane.request.ttl | default "PT10M" | quote }}
Expand Down
4 changes: 2 additions & 2 deletions charts/item-relationship-service/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ prometheus:
metrics_path: '/actuator/prometheus'
scrape_interval: 5s
static_configs:
- targets: [ '{{ .Release.Name }}-irs-helm:4004' ]
- targets: [ '{{ .Release.Name }}-item-relationship-service:4004' ]

- job_name: 'minio-actuator'
metrics_path: /minio/v2/metrics/cluster
Expand All @@ -316,7 +316,7 @@ grafana:
password: # <grafana-password>

admin:
existingSecret: "{{ .Release.Name }}-irs-helm"
existingSecret: "{{ .Release.Name }}-item-relationship-service"
userKey: grafanaUser
passwordKey: grafanaPassword

Expand Down
2 changes: 1 addition & 1 deletion local/deployment/full-irs/values-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ irs:
metrics_path: '/actuator/prometheus'
scrape_interval: 5s
static_configs:
- targets: [ '{{ .Release.Name }}-irs-helm:4004' ]
- targets: [ '{{ .Release.Name }}-item-relationship-service:4004' ]

- job_name: 'minio-actuator'
metrics_path: /minio/v2/metrics/cluster
Expand Down
2 changes: 1 addition & 1 deletion local/deployment/full-irs/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ irs:
metrics_path: '/actuator/prometheus'
scrape_interval: 5s
static_configs:
- targets: [ '{{ .Release.Name }}-irs-helm:4004' ]
- targets: [ '{{ .Release.Name }}-item-relationship-service:4004' ]

- job_name: 'minio-actuator'
metrics_path: /minio/v2/metrics/cluster
Expand Down
Loading