feat(artifacts): Registry tab listing the project's container images - #655
Merged
Conversation
…mages
Next to Activity, a new Registry tab on the artifact detail page lists the
container images linked to the artifact's project (the deploy gate), via
GET /projects/{id}/images. Each row shows the image:tag, whether it resolves
through a stored org registry credential or is external/public, its
repository, short digest, and link time. Adds a useProjectImages hook.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Adds a Registry tab next to Activity on the artifact detail page. It lists the container images linked to the artifact's project (the deploy gate).
Each row shows:
image:tagregistry(resolves through a stored org registry credential) vsexternal(public/no registry)sha256:trimmed to 12), and link timeHow
useProjectImages(projectId)hook →GET /projects/{id}/images(endpoint +ProjectImageResponsealready exist indeployments.py).ArtifactDetail.tsx:registryadded to theTabunion, tabs array, label map, render switch, plus aRegistryImagesListsub-component (mirrorsActivityTimelinestructure/theming).Images are project-scoped (shared across the project's artifacts) — the tab shows the project's images on any artifact under it.
Test
Backend endpoint pre-existing + access-controlled (
require_project_access). Frontend Type Check (CItsc -b) validates types —typescriptisn't installed on the dev host.🤖 Generated with Claude Code