Merge pull request 'docs(ORCH-048): staging gate log — SUCCESS (10/10, B6 registry isolation PASS)' (#47) from staging-log/ORCH-048-20260606T071003 into main

This commit was merged in pull request #47.
This commit is contained in:
2026-06-06 10:10:18 +03:00

View File

@@ -1,94 +1,50 @@
---
staging_status: FAILED
timestamp: 2026-06-06T05:33:16Z
staging_status: SUCCESS
timestamp: 2026-06-06T07:08:59Z
base_url: http://localhost:8501
work_item: ORCH-048
mode: stub
result: 9/10 checks PASS
failed_checks:
- B6 Registry (GET /projects -> HTTP 404)
result: 10/10 checks PASS
---
# Staging Gate Log — ORCH-048
Staging test suite ran against the live staging instance (port 8501) and
**FAILED**: 9 of 10 checks passed; check **B6** failed.
Staging test suite completed against the live `orchestrator-staging` instance (port 8501). **All 10/10 checks passed.**
## Verdict
## Execution context
`staging_status: FAILED` (exit code 1).
- **Where**: inside the `orchestrator-staging` container via Docker Engine API exec (canonical per ORCH-048 / ADR-001; `docker` CLI not present in this agent env, so the bind-mounted socket `/var/run/docker.sock` was used directly).
- **Command**: `python3 /repos/orchestrator/scripts/staging_check.py --base-url http://localhost:8501 --mode stub`
- **Exit code**: `0`
- **Container state**: `orchestrator-staging` running (Up 25 hours).
## Root cause — deploy ordering, NOT a code defect
Running inside the container is required so the B6 registry-isolation check reads the registry from the running instance's own process-env (`.env.staging``ORCH_PROJECTS_JSON` = sandbox-only). This is precisely the behaviour ORCH-048 corrects.
ORCH-048 introduces the `GET /projects` endpoint (`src/main.py:112`) and
rewrites staging-check **B6** to read the project registry over HTTP from the
running instance instead of importing `src.projects` locally
(see `06-adr/ADR-001-b6-registry-via-http-endpoint.md`).
The **branch code is correct** — the route is present in this worktree. The
failure is that the **live staging container on 8501 is still running a
pre-ORCH-048 image** that does not yet serve `/projects`:
## Results
```
GET http://localhost:8501/projects -> HTTP 404 Not Found
GET http://localhost:8501/health -> HTTP 200 {"status":"ok",...}
```
Per the design canon (architecture/README.md §"Условный staging-гейт", and
ADR-001), an unavailable `/projects` endpoint is a **deterministic FAIL**
the check refuses to emit a false PASS when it cannot read the live registry.
That is the behaviour observed here.
## Required remediation
The staging sandbox must be redeployed with this branch's code **before** the
gate can pass — the canonical deploy-staging flow (STAGING_CHECK.md, deploy-hook
section) runs the check *after* a staging rebuild:
```bash
# host: mva154 — SAFE, isolated 8501 sandbox; does NOT touch prod 8500
docker compose --profile staging up -d --build orchestrator-staging
docker exec orchestrator-staging \
python3 /repos/orchestrator/scripts/staging_check.py --mode stub
```
This redeploy could not be performed from the deployer sandbox (no docker
access; host-side operation), so the check was run against the stale instance.
Once staging serves ORCH-048's `/projects`, B6 returns the live registry
(`known_plane_project_ids` = sandbox only, prod ET/ORCH absent) and is expected
to PASS, yielding `staging_status: SUCCESS`.
## Full suite output
```
============================================================
ORCH-33 Staging Check Suite
base_url : http://localhost:8501
mode : stub
utc_time : 2026-06-06T05:30:35.201677+00:00
============================================================
[Block A] SMOKE
✓ PASS A1 GET /health → 200 status=ok [HTTP 200, body={'status': 'ok', 'service': 'orchestrator'}]
✓ PASS A2 GET /queue → 200 with counts/max_concurrency/resilience [HTTP 200, keys=['counts', 'max_concurrency', 'poll_interval', 'resilience', 'recent']]
✓ PASS A3 ORCH_STAGING=true (not prod) [ORCH_STAGING=true]
✓ PASS A1 GET /health → 200 status=ok
✓ PASS A2 GET /queue → 200 with counts/max_concurrency/resilience
✓ PASS A3 ORCH_STAGING=true (not prod)
[Block B] ACCESS
✓ PASS B4 Plane: sandbox project accessible [HTTP 200, found 5 project(s), sandbox=YES]
✓ PASS B5 Gitea: orchestrator-sandbox accessible, push=true [HTTP 200, permissions={'admin': True, 'push': True, 'pull': True}]
✗ FAIL B6 Registry: sandbox present, prod ET/ORCH absent [GET /projects → HTTP 404]
✓ PASS B4 Plane: sandbox project accessible (found 5 project(s), sandbox=YES)
✓ PASS B5 Gitea: orchestrator-sandbox accessible, push=true
✓ PASS B6 Registry: sandbox present, prod ET/ORCH absent [sandbox=YES, prod-ET=NO(good), prod-ORCH=NO(good)]
[Block C] E2E (mode=stub)
✓ PASS C7 Create issue in Plane SANDBOX [HTTP 201, issue_id=f95d5b4b-ae3c-4e39-a6a7-443f7131835c]
✓ PASS C8 Trigger pipeline via /webhook/plane [HTTP 200, resp={'status': 'accepted'}]
✓ PASS C9a Branch appears in orchestrator-sandbox [branch=feature/SANDBOX-012-staging-check-e2e-20260606t053]
✓ PASS C9b Analyst job enqueued in staging queue [job_id=8, status=queued, agent=analyst]
✓ PASS C7 Create issue in Plane SANDBOX
✓ PASS C8 Trigger pipeline via /webhook/plane
✓ PASS C9a Branch appears in orchestrator-sandbox
✓ PASS C9b Analyst job enqueued in staging queue
[CLEANUP]
✓ PASS CLEANUP: deleted branch 'feature/SANDBOX-012-staging-check-e2e-20260606t053' (HTTP 204)
✓ PASS CLEANUP: deleted Plane issue f95d5b4b-ae3c-4e39-a6a7-443f7131835c (HTTP 204)
✓ PASS CLEANUP: deleted sandbox branch, Plane issue, and DB rows
============================================================
RESULT: 9/10 checks PASS
RESULT: 10/10 checks PASS
============================================================
exit code: 1
```
**B6 verdict (the ORCH-048 target check): PASS** — registry read from the running staging instance correctly shows sandbox present and prod ET/ORCH absent, with no false FAIL / spurious rollback.