Link Temporal UI from ops console; propose SSO access WP-0025
Add nav/deep link to Temporal Web UI (configurable URL, default 127.0.0.1:8080 for port-forward). Document dual port-forward and draft ACTIVITY-WP-0025 for Keycloak SSO ingress without port-forward.
This commit is contained in:
parent
6c34e2c1f1
commit
7761acf86a
4 changed files with 283 additions and 3 deletions
|
|
@ -48,6 +48,8 @@ async def test_auth_status(ops_app: FastAPI) -> None:
|
|||
body = res.json()
|
||||
assert body["operator_token_configured"] is True
|
||||
assert body["mutation_header"] == "X-Operator-Token"
|
||||
assert "temporal_ui_url" in body
|
||||
assert body["temporal_ui_url"].startswith("http")
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
|
|
@ -215,6 +217,8 @@ async def test_ui_index_renders(ops_app: FastAPI, monkeypatch: pytest.MonkeyPatc
|
|||
assert res.status_code == 200
|
||||
assert "Daily Triage" in res.text
|
||||
assert "Operator token" in res.text
|
||||
assert "Temporal UI" in res.text
|
||||
assert "127.0.0.1:8080" in res.text
|
||||
|
||||
|
||||
@pytest.mark.asyncio
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue