Skip to content

Tekton Pipeline release v1.6.6 "Sphynx Sentinels"

Choose a tag to compare

@tekton-robot tekton-robot released this 30 Jul 08:55

-Docs @ v1.6.6
-Examples @ v1.6.6

Installation one-liner

kubectl apply -f https://infra.tekton.dev/tekton-releases/pipeline/previous/v1.6.6/release.yaml

Attestation

The Rekor UUID for this release is 108e9186e8c5677a38f2172d857e440c09bb59ae2cc0ee33ece4381b8a1e7e7f55453fb531d91647

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a38f2172d857e440c09bb59ae2cc0ee33ece4381b8a1e7e7f55453fb531d91647
rekor-cli get --uuid $REKOR_UUID --format json | jq -r .Attestation | jq .

Verify that all container images in the attestation are in the release file:

RELEASE_FILE=https://infra.tekton.dev/tekton-releases/pipeline/previous/v1.6.6/release.yaml
REKOR_UUID=108e9186e8c5677a38f2172d857e440c09bb59ae2cc0ee33ece4381b8a1e7e7f55453fb531d91647

# Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGES=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | jq -r '.subject[]|.name + ":v1.6.6@sha256:" + .digest.sha256')

# Download the release file
curl -L "$RELEASE_FILE" > release.yaml

# For each image in the attestation, match it to the release file
for image in $REKOR_ATTESTATION_IMAGES; do
  printf $image; grep -q $image release.yaml && echo " ===> ok" || echo " ===> no match";
done

Changes

Features

Fixes

  • 🐛 [cherry-pick: release-v1.6.x] fix: surface clear errors when completed tasks miss referenced results (#10459)

PipelineRun status now shows which specific results were missing when tasks are skipped due to uninitialized result references from completed tasks. A Warning event with reason ResultValidationFailed is also emitted for consistency with other failure modes.

Misc

Docs

Thanks

Thanks to these contributors who contributed to v1.6.6!

Extra shout-out for awesome release notes: