registry_check_image
Verify if an image:tag exists in a container registry. Returns boolean without error on absence, useful for pre-deployment checks and detecting stale images.
Instructions
Check whether a specific image:tag exists in a container registry.
Returns exists=True/False without raising an error when the image is absent. Useful for pre-deployment checks and stale image detection.
Args: registry_type: Registry backend — "harbor", "ecr", or "gar". image: Image name with tag (e.g. "myproject/myapp:v1.2.3"). registry_url: Harbor base URL or ECR registry URI. username: Harbor username or registry token username. password: Harbor password or registry token. region: AWS region (ECR only). gateway_id: Gateway UUID for the target site.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image | Yes | ||
| region | No | ||
| password | No | ||
| username | No | ||
| gateway_id | No | ||
| registry_url | No | ||
| registry_type | Yes |