Skip to content

Commit ac35396

Browse files
fix: correct staging url (#1778)
Removes the now-unnecessary port for staging deployment, which was breaking e2e and other parts
1 parent 5da0cdd commit ac35396

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy-staging.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@ jobs:
6868
run: pnpm e2e
6969
working-directory: ./dashboard
7070
env:
71-
PLAYWRIGHT_TEST_BASE_URL: https://staging.dashboard.kernelci.org:9000
71+
PLAYWRIGHT_TEST_BASE_URL: https://staging.dashboard.kernelci.org

backend/kernelCI_app/constants/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
SCHEMA_VERSION_ENV_FILE = "kernelCI/envconfig/schema-version.yaml"
1111

1212
PRODUCTION_HOST = "https://dashboard.kernelci.org"
13-
STAGING_HOST = "https://staging.dashboard.kernelci.org:9000"
13+
STAGING_HOST = "https://staging.dashboard.kernelci.org"

dashboard/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ VITE_FEATURE_FLAG_SHOW_DEV=false
77
VITE_FEATURE_FLAG_TREE_LISTING_VERSION=v1
88
VITE_FEATURE_FLAG_HARDWARE_LISTING_VERSION=v1
99

10-
PLAYWRIGHT_TEST_BASE_URL=https://staging.dashboard.kernelci.org:9000
10+
PLAYWRIGHT_TEST_BASE_URL=https://staging.dashboard.kernelci.org

dashboard/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ cp .env.example .env
3838

3939
# Edit the .env file to set PLAYWRIGHT_TEST_BASE_URL to your desired environment
4040
# Available environments:
41-
# - Staging: https://staging.dashboard.kernelci.org:9000 (default)
41+
# - Staging: https://staging.dashboard.kernelci.org (default)
4242
# - Production: https://dashboard.kernelci.org
4343
# - Local: http://localhost:5173
4444

docs/Onboarding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This frontend is written in TypeScript and uses the React library.
2323
## Tasks
2424
> Note:
2525
> In case you don't have access to the backend, feel free to use the staging api to run the Frontend Code and send PRs.
26-
> https://staging.dashboard.kernelci.org:9000
26+
> https://staging.dashboard.kernelci.org
2727
> You can also ask for access in the #webdashboard channel in the KernelCI Discord.
2828
2929
> Remember:

0 commit comments

Comments
 (0)