Verify an image
Verification needs cosign v3+. Always verify by digest:Verify against the canonical registry,
us-central1-docker.pkg.dev/odigos-cloud/components.
registry.odigos.io is a pull alias: images resolve through it, but signature
discovery for retroactively signed versions does not currently surface there.imagetools inspect as above, not a per-platform child digest
(children carry signatures but no attestation).
Full worked example: verifying odigos-scheduler v1.35.0
Full worked example: verifying odigos-scheduler v1.35.0
Run as-is — no placeholders to fill in:Expected output (trimmed):The 1022 components are the SBOM contents — inspect them with
jq '.predicate.components' instead of length, e.g. the first entries here are
base-files 13.8+deb13u6 and github.com/argoproj/argo-rollouts v1.9.1. Because
v1.35.0 predates release-time signing, the certificate for this version names the
audited backfill workflow (ci-core/.github/workflows/backfill-sign.yml) — that is
the expected identity for retroactively signed history, and the reason the identity
regexp accepts both workflows.Signing identities
Each artifact is signed by its own release workflow — never verify with a broad pattern like.*odigos-io.*. The canonical list of identities and the version each
artifact is signed from lives in
SIGNING.md.
To also cover retroactively signed history, combine the release identity with the
backfill identity in one pattern, as the commands above do:
^https://github\.com/odigos-io/(<release workflow path>@<ref>|ci-core/\.github/workflows/backfill-sign\.yml@refs/heads/main)$
Two more certificate details are expected and legitimate:
- Backfill: historical releases were signed retroactively by
odigos-io/ci-core/.github/workflows/backfill-sign.yml— the certificate honestly records the backfill identity and date, and it is auditable in Rekor. - Stable
x.y.0tags verify against the release-candidate tag identity: the stable tag is a retag of the exact RC digest, so the certificate names the RC that built it.
Attestable images
Every image below is signed and carries a CycloneDX SBOM attestation, from the version listed inSIGNING.md:
- Odigos platform:
odigos-autoscaler,odigos-scheduler,odigos-instrumentor,odigos-collector,odigos-odiglet,odigos-ui,odigos-operator,odigos-agents,odigos-cli,odigos-victoria-metrics - Odigos Enterprise:
odigos-enterprise-odiglet,odigos-enterprise-instrumentor,odigos-enterprise-ui,odigos-enterprise-collector,odigos-enterprise-central-proxy,odigos-enterprise-central-backend,odigos-enterprise-central-ui,odigos-enterprise-agents,odigos-enterprise-connector-runtime,odigos-enterprise-connector-aws,odigos-enterprise-connector-azure,odigos-enterprise-connector-gcp—odigletandagentsalso publish-extendedvariants (separate digests, same identity) - Supporting images:
wasp-init,odigos-cli-offsets, andodigos-vmagent-instrumentations(signed for publishes after 2026-08-12)
Air-gapped verification
The Rekor proof travels inside the signature bundle, so verification works offline: supply--trusted-root with a Sigstore trusted-root file instead of relying on
--offline (removed in cosign 3.x).