Tekton Pipeline release v0.56.5 "Persian Terminator"
-Docs @ v0.56.5
-Examples @ v0.56.5
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.56.5/release.yaml
Attestation
The Rekor UUID for this release is 24296fb24b8ad77a2f09bf689d71d460727a65204008bb91c9b764039990958e155058c4234aaecd
Obtain the attestation:
REKOR_UUID=24296fb24b8ad77a2f09bf689d71d460727a65204008bb91c9b764039990958e155058c4234aaecd
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://storage.googleapis.com/tekton-releases/pipeline/previous/v0.56.5/release.yaml
REKOR_UUID=24296fb24b8ad77a2f09bf689d71d460727a65204008bb91c9b764039990958e155058c4234aaecd
# 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 + ":v0.56.5@sha256:" + .digest.sha256')
# Download the release file
curl "$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
-
🐛 [release-v0.56.x] fix: stepresult intepolations does not accept multiple matches (#7875)
-
fix: cannot use multiple step results at the same time for interpolation.
-
🐛 [release-v0.56.x] fix: when using remote resources, the related metrics tag name is wrong (#7956)
-
[release-v0.56.x] Fix: Identify workspace usage in a Task (#8018)
Misc
Docs
Thanks
Thanks to these contributors who contributed to v0.56.5!
Extra shout-out for awesome release notes: