Skip to content

Commit

Permalink
Merge pull request #12935 from richard-cox/test-prime
Browse files Browse the repository at this point in the history
Use correct container registry for latest 2.9 `head` builds
  • Loading branch information
richard-cox authored Jan 7, 2025
2 parents 5800169 + f7dcc3e commit 9a48446
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
with:
name: ${{ env.E2E_BUILD_DIST_EMBER_NAME }}
path: ${{ env.E2E_BUILD_DIST_EMBER_DIR }}

- name: Run Rancher
run: yarn e2e:docker

Expand Down
5 changes: 4 additions & 1 deletion scripts/e2e-docker-start
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ DIR=$(cd $(dirname $0)/..; pwd)
DASHBOARD_DIST=${DIR}/dist
EMBER_DIST=${DIR}/dist_ember

# Image Repo
RANCHER_IMG_REGISTRY=stgregistry.suse.com/rancher/rancher

# Image version
RANCHER_IMG_VERSION=v2.9-head

Expand All @@ -17,7 +20,7 @@ docker run -d --restart=unless-stopped -p 80:80 -p 443:443 \
-e CATTLE_PASSWORD_MIN_LENGTH=3 \
--name cypress \
--privileged \
rancher/rancher:${RANCHER_IMG_VERSION}
${RANCHER_IMG_REGISTRY}:${RANCHER_IMG_VERSION}

docker ps

Expand Down

0 comments on commit 9a48446

Please sign in to comment.