Skip to content

Release 3.5.0 of IRS #44

Release 3.5.0 of IRS

Release 3.5.0 of IRS #44

Workflow file for this run

name: Upgrade Charts
on:
pull_request:
paths:
- 'charts/irs-helm/**'
workflow_dispatch:
jobs:
upgrade:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Kubernetes KinD Cluster
uses: container-tools/kind-action@v2
- name: Set up Helm
uses: azure/setup-helm@v3
with:
version: v3.9.3
- name: Add repos
run: |
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add minio https://charts.min.io/
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add grafana https://grafana.github.io/helm-charts
helm repo add irs https://eclipse-tractusx.github.io/item-relationship-service
- name: Run helm install
# Install latest released irs-helm version
run: |
helm install irs irs/irs-helm
- name: Run helm upgrade
# Upgrade the installed irs-helm version with the locally available charts
run: |
helm dependency update charts/irs-helm
helm upgrade irs charts/irs-helm