chore: add Gateway UX port to testing-up output - #6415
Open
jonpspri wants to merge 2 commits into
Open
Conversation
jonpspri
requested review from
Lang-Akshay,
brian-hussey,
crivetimihai,
ja8zyjits and
msureshkumar88
as code owners
August 26, 2026 09:27
gcgoncalves
reviewed
Aug 26, 2026
| @echo "Service URL Purpose" | ||
| @echo "──────────────────────────────────────────────────────────────────────────" | ||
| @echo "Gateway (nginx) http://localhost:8080 API proxy" | ||
| @echo "Gateway UX (nginx) http://localhost:3100 Gateway Supported UX" |
Collaborator
There was a problem hiding this comment.
I believe the port is 3001.
Collaborator
Author
There was a problem hiding this comment.
Well you should have documented it :p. I'll double-check.
jonpspri
force-pushed
the
chore-add-ux-port-to-testing-up-output
branch
from
September 1, 2026 11:13
0509f84 to
dfdf910
Compare
Signed-off-by: Jonathan Springer <jps@s390x.com>
Replace the hardcoded port in the testing-up service table with
${WEB_UI_PORT:-3001}, matching the pattern used in docker-compose.yml.
This ensures the displayed URL reflects any custom WEB_UI_PORT override.
Signed-off-by: Jonathan Springer <jps@s390x.com>
jonpspri
force-pushed
the
chore-add-ux-port-to-testing-up-output
branch
from
September 1, 2026 12:00
dfdf910 to
341d1a7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a one-line reminder for the Gateway UX URL to the
make testing-upservice table.PR #6320 exposed the experimental web UI at
http://localhost:3100(configurable viaWEB_UI_PORT), but thetesting-upstartup summary table wasn't updated to include it. Operators had to know the port out-of-band.Change
+ @echo "Gateway UX (nginx) http://localhost:3100 Gateway Supported UX"One
@echoline in theMakefile— no logic changes.Testing
Running
make testing-upnow prints:Closes #6414