From 4c132d55492ec27114816feed6fcb57ac9ee8ca6 Mon Sep 17 00:00:00 2001 From: Robert Pajak Date: Wed, 18 Feb 2026 15:40:49 +0100 Subject: [PATCH] docs: add container image verification --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e518245a31..d57ea0e9c1 100644 --- a/README.md +++ b/README.md @@ -111,13 +111,16 @@ OBI is also available as container images: # Set your desired version (or use 'latest' for the most recent release) VERSION=latest # or VERSION=1.0.0 for a specific version +# (Optional) Verify the signature of the container image +cosign verify --certificate-identity-regexp 'https://github.com/open-telemetry/opentelemetry-ebpf-instrumentation/' --certificate-oidc-issuer 'https://token.actions.githubusercontent.com' otel/ebpf-instrument:${VERSION} + # Pull the image -docker pull docker.io/otel/ebpf-instrument:${VERSION} +docker pull otel/ebpf-instrument:${VERSION} # Run OBI in a container # Note: OBI requires elevated privileges (--privileged) to instrument processes # See https://opentelemetry.io/docs/zero-code/obi/setup/docker/ for more details -docker run --privileged docker.io/otel/ebpf-instrument:${VERSION} +docker run --privileged otel/ebpf-instrument:${VERSION} ``` ## Contributing