Skip to content

Commit a75af70

Browse files
committed
Fix tests
Signed-off-by: Andrea Mazzotti <andrea.mazzotti@suse.com>
1 parent 4b81a02 commit a75af70

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/actions/chart/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ runs:
2424
- name: Pull chart from OBS
2525
env:
2626
B_REPO: ${{ steps.set_repo.outputs.build_repo }}
27-
OPERATOR_CHART: rancher/elemental-operator-chart
28-
CRDS_CHART: rancher/elemental-operator-crds-chart
27+
OPERATOR_CHART: rancher/elemental-operator
28+
CRDS_CHART: rancher/elemental-operator-crds
2929
shell: bash
3030
run: |
3131
mkdir -p build

.github/workflows/e2e.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
- name: Pull chart for PR
6666
env:
6767
PR_NUMBER: ${{ github.event.number }}
68-
OPERATOR_CHART: rancher/elemental-operator-chart
69-
CRDS_CHART: rancher/elemental-operator-crds-chart
68+
OPERATOR_CHART: rancher/elemental-operator
69+
CRDS_CHART: rancher/elemental-operator-crds
7070
run: |
7171
set -x
7272
B_REPO=registry.opensuse.org/isv/rancher/elemental/pr/rancher/elemental-operator/pr-${PR_NUMBER}/charts
@@ -77,7 +77,7 @@ jobs:
7777
id: chart
7878
run: |
7979
set -x
80-
FILE=$(find . -type f -name "elemental-operator-chart-[1-9]*.tgz" -print)
80+
FILE=$(find . -type f -name "elemental-operator-[1-9]*.tgz" -print)
8181
CHART=$(basename $FILE)
8282
echo "chart_name=$CHART" >> $GITHUB_OUTPUT
8383
- name: Upload chart

.obs/helper_scripts/listimages.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@ if [ ${REGISTRY} != "registry.suse.com" ]; then
4747
REGISTRY="$(dirname ${REGISTRY})/charts"
4848
fi
4949

50-
echo "${REGISTRY}/rancher/elemental-operator-crds-chart:${OPERATOR}"
51-
echo "${REGISTRY}/rancher/elemental-operator-chart:${OPERATOR}"
50+
echo "${REGISTRY}/rancher/elemental-operator-crds:${OPERATOR}"
51+
echo "${REGISTRY}/rancher/elemental-operator:${OPERATOR}"
5252

0 commit comments

Comments
 (0)