Skip to content

Commit ece0570

Browse files
mayastor-borstiagolobocastro
andcommitted
chore(bors): merge pull request #690
690: fix(helm/chart): add missing images r=tiagolobocastro a=tiagolobocastro Adds missing images from Chart.yaml Fixes CI issue where the incorrect file was checked for changes, and which led us to this incorrect state. Co-authored-by: Tiago Castro <[email protected]>
2 parents af3dc56 + 09418fb commit ece0570

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/develop-to-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
3838
title: Prepare release branch
3939
labels: |
40-
prepare-release-branch
41-
automated-pr
40+
area/helm
41+
kind/ci
4242
draft: false
4343
signoff: true
4444
delete-branch: true

.github/workflows/release-chart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
7474
title: Bump future helm chart version on the release branch
7575
labels: |
76-
update-release-branch
77-
automated-pr
76+
area/helm
77+
kind/ci
7878
draft: false
7979
signoff: true
8080
delete-branch: true

chart/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ annotations:
6161
- name: loki
6262
image: docker.io/grafana/loki:3.4.2
6363
- name: alpine-bash
64-
image: docker.io/openebs/alpine-bash:4.1.0
64+
image: docker.io/openebs/alpine-bash:4.2.0
6565
- name: alpine-sh
66-
image: docker.io/openebs/alpine-sh:4.1.0
66+
image: docker.io/openebs/alpine-sh:4.2.0
6767
- name: mayastor-agent-core
6868
image: docker.io/openebs/mayastor-agent-core:release-2.9
6969
- name: mayastor-agent-ha-cluster
@@ -97,9 +97,9 @@ annotations:
9797
- name: prometheus-nats-exporter
9898
image: natsio/prometheus-nats-exporter:0.11.0
9999
- name: linux-utils
100-
image: openebs/linux-utils:4.1.0
100+
image: openebs/linux-utils:4.2.0
101101
- name: provisioner-localpv
102-
image: openebs/provisioner-localpv:4.2.0
102+
image: openebs/provisioner-localpv:4.3.0
103103
- name: mc
104104
image: quay.io/minio/mc:RELEASE.2024-11-21T17-21-54Z
105105
- name: minio

scripts/helm/images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ case "$COMMAND" in
225225
sed -i 's/ helm.sh\/images:/ helm.sh\/images: |/' "$CHART"
226226

227227
if [ "$EXIT_CODE" = "true" ]; then
228-
git diff --exit-code "$IMAGES"
228+
git diff --exit-code "$CHART"
229229
fi
230230

231231
echo "Finished patching $CHART"

0 commit comments

Comments
 (0)