2026-05-30 — openapi pin P0 rollback (4.16 → 4.14)¶
Motivation¶
GitHub issue #20 (P0 #1) flagged that
api/services/image_tags.py was pinning elb-openapi: 4.16 even though
that tag has never been built or pushed to ACR
(acrelbdashboard3abp67bppe). Verification confirmed:
- ACR
repository show-tags elb-openapionly returns4.14. - Sibling
~/dev/elastic-blast-azure/docker-openapi/app/main.pysource was bumped toVERSION = "3.7.2"(commitf360821), but noaz acr build -t elb-openapi:4.16 …was ever run.
The next azd up or sidecar redeploy in this state would fail with
ImagePullBackOff: manifest unknown and brick the Container App
control plane until manually patched.
User-facing change¶
- No SPA / route surface change.
- The next deploy or
apply_templatecall will now resolveelb-openapito the4.14image that actually exists in ACR. - The 3.7.2 critique-fix round (per-IP anonymous bucket, GC of empty
rate buckets, autoscaler-aware pool name match) is temporarily
unavailable in deployed environments until tag
4.17(siblingVERSION = "3.7.3") is built and the pin is re-bumped.
API / IaC diff summary¶
| Surface | Change |
|---|---|
api/services/image_tags.py |
elb-openapi pin 4.16 → 4.14; added a 2026-05-30 P0 rollback comment block explaining why and pointing to this note. |
No IaC changes. No new dependencies. Storage
publicNetworkAccess: Disabled posture unchanged.
Validation evidence¶
az acr repository show-tags --name acrelbdashboard3abp67bppe --repository elb-openapi -o tsv→ only4.14. The other tags referenced inimage_tags.pycomments (4.15,4.16) do not exist.uv run ruff check api/services/image_tags.py— clean.uv run pytest -q api/tests/test_openapi_task.py— passes (mock-only, no live pull).- No test or fixture pinned against the literal
"4.16"value (grep '"4.16"' api/tests/).
Rollout order for the eventual re-bump (4.17)¶
- Land the sibling critique-fix round on
elastic-blast-azure/mastersodocker-openapi/app/main.pycarriesVERSION = "3.7.3"plus the real fixes for the P1 #2 / #3 / P3 #8 / #9 sub-items of issue #20. az acr build -r acrelbdashboard3abp67bppe -t elb-openapi:4.17 -f ~/dev/elastic-blast-azure/docker-openapi/Dockerfile ~/dev/elastic-blast-azure/docker-openapi— verify the tag appears inaz acr repository show-tags.- Bump
IMAGE_TAGS["elb-openapi"]from4.14→4.17in this repo and refresh the comment block. - Update the SPA-side pin reference in
docs/features_change/2026-05/2026-05-29-openapi-critique-fixes.md(the "image tag pin moved" row currently says4.15 → 4.16).
Failing to do these in order will re-introduce the same
ImagePullBackOff symptom this rollback is meant to prevent.
Cross-references¶
- Issue: #20 P0 #1
- Original change note: 2026-05-29-openapi-critique-fixes.md
- Sibling source state:
~/dev/elastic-blast-azureHEADf360821