Package version:

The source reference for the OCIRepository object.

interface OCIRepositoryRefDefinition {
    digest?: string;
    semver?: string;
    tag?: string;
}

Properties

Properties

digest?: string

The image digest to pull from OCI repository, the value should be in the format ‘sha256:’. This takes precedence over semver.

semver?: string

The semver range used to match against OCI repository tags. This takes precedence over tag.

tag?: string

The OCI repository image tag name to pull. This defaults to 'latest'.