Currently, the Satellite Model includes the following field:
image_uri: str = Field(..., description="OCI/Docker image URI for the satellite")
When a satellite is registered via the new process (see PR #47), there is no verification that the image referenced by image_uri actually exists.
Feature Request:
- Add logic to validate that the provided
image_uri points to an existing image (OCI/Docker).
- If the image does not exist, registration should fail with a clear error message.
This will help avoid invalid or mistyped image URIs and improve reliability of the registration workflow.
Currently, the Satellite Model includes the following field:
When a satellite is registered via the new process (see PR #47), there is no verification that the image referenced by
image_uriactually exists.Feature Request:
image_uripoints to an existing image (OCI/Docker).This will help avoid invalid or mistyped image URIs and improve reliability of the registration workflow.