Skip to content

Commit 84863f0

Browse files
Fix daily accessibility workflow PORT error (#17647)
1 parent 3937564 commit 84863f0

2 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/daily-accessibility-review.lock.yml

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/daily-accessibility-review.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ steps:
5858
- name: Run Rancher
5959
run: |
6060
# Same as .github/workflows/test.yaml -> yarn e2e:docker -> scripts/e2e-docker-start
61-
# Ports 80/443 are reserved by the MCP Gateway, so we remap to 8080/8443
62-
RANCHER_HOST_HTTP_PORT=8080 RANCHER_HOST_HTTPS_PORT=8443 RANCHER_CONTAINER_NAME=rancher RANCHER_VERSION_E2E=head yarn e2e:docker
61+
# Port 8080 is reserved by the MCP Gateway, so we use 9080/9443 for Rancher
62+
RANCHER_HOST_HTTP_PORT=9080 RANCHER_HOST_HTTPS_PORT=9443 RANCHER_CONTAINER_NAME=rancher RANCHER_VERSION_E2E=head yarn e2e:docker
6363
- name: Bootstrap Rancher (first-login setup)
6464
run: |
6565
# Complete the first-login flow via API so the dashboard is fully usable.
6666
# See cypress/jenkins/run.sh rancher_init() for the reference implementation.
67-
RANCHER_URL="https://127.0.0.1:8443"
67+
RANCHER_URL="https://127.0.0.1:9443"
6868
BOOTSTRAP_PASSWORD="password"
6969
7070
echo "Logging in with bootstrap password..."
@@ -116,14 +116,14 @@ additional information about WCAG 2.2.
116116
The code of the application has been checked out to the current working directory.
117117

118118
Important notes about the runtime environment:
119-
- The Rancher Dashboard is running at `https://127.0.0.1:8443/dashboard/` (started and bootstrapped by prior workflow steps).
119+
- The Rancher Dashboard is running at `https://127.0.0.1:9443/dashboard/` (started and bootstrapped by prior workflow steps).
120120
- The admin credentials are: username `admin`, password `password`.
121121
- You are running inside a sandboxed container. The Docker socket is NOT available, so do NOT run `docker ps`, `docker logs`, or any docker commands — they will fail.
122122
- If Playwright fails to connect, try waiting a few seconds and retrying. The server uses a self-signed certificate, which is already handled by `--ignore-https-errors`.
123123

124124
Steps:
125125

126-
1. Use the Playwright MCP tool to browse to `https://127.0.0.1:8443/dashboard/`. If you see a login page, log in with username `admin` and password `password`. Review the website for accessibility problems by navigating around, clicking
126+
1. Use the Playwright MCP tool to browse to `https://127.0.0.1:9443/dashboard/`. If you see a login page, log in with username `admin` and password `password`. Review the website for accessibility problems by navigating around, clicking
127127
links, pressing keys, taking snapshots and/or screenshots to review, etc. using the appropriate Playwright MCP commands.
128128

129129
2. Review the source code of the application to look for accessibility issues in the code. Use the Grep, LS, Read, etc. tools.

0 commit comments

Comments
 (0)