How to use the Dummy Container Signature Validation Service
The Dummy Container Signature Validation Service is an example implementation of the Container Signature Validation Service interface which mainly serves as a reference for future implementations and testing.
The purpose of this component is to have a service whose configuration dictates the signature verification outcome. In the main text area is possible to set the container image reference that the service will report as correctly signed.
The format accepted by the service is: <imageName>:<imageTag>@<imageDigest>
where
<imageName>
: is the container image name. The value will need to be expressed in the form registryURL/imagename in case of a custom registry. Example:nginx
ornvcr.io/nvidia/deepstream
.<imageTag>
: is the container image tag. Example:latest
or6.4-gc-triton-devel
.<imageDigest>
: is the image digest in the OCI specification format.
Each image should be separated by a newline. The service will report a successful signature validation for each image inside its configuration, returning the provided image digest as a result.