From 2c56b110379da0c6165f0ed8b66f33d5ded309e6 Mon Sep 17 00:00:00 2001 From: meeech <4623+meeech@users.noreply.github.com> Date: Wed, 17 Dec 2025 09:31:09 -0500 Subject: [PATCH] fix: update example to respect limitation by OCI of lowercase Signed-off-by: meeech <4623+meeech@users.noreply.github.com> --- content/en/cosign/signing/signing_with_containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/cosign/signing/signing_with_containers.md b/content/en/cosign/signing/signing_with_containers.md index 5bda009b..505a1479 100644 --- a/content/en/cosign/signing/signing_with_containers.md +++ b/content/en/cosign/signing/signing_with_containers.md @@ -18,7 +18,7 @@ $ cosign sign $IMAGE To create a test image to sign using [ttl.sh](https://ttl.sh), run the following commands: ``` -$ IMAGE_NAME=$(uuidgen) +$ IMAGE_NAME=$(uuidgen | tr '[:upper:]' '[:lower:]') $ IMAGE=ttl.sh/$IMAGE_NAME:1h $ cosign copy alpine $IMAGE ```