Tekton Pipeline release v0.62.4 "Ragamuffin Reventlov"
-Docs @ v0.62.4
-Examples @ v0.62.4
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.62.4/release.yaml
Attestation
The Rekor UUID for this release is 108e9186e8c5677a294d223044005f4caffd3b6b20afcfcc96849fd9b2cdbcb170ca741ab440fb83
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a294d223044005f4caffd3b6b20afcfcc96849fd9b2cdbcb170ca741ab440fb83
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.62.4/release.yaml
REKOR_UUID=108e9186e8c5677a294d223044005f4caffd3b6b20afcfcc96849fd9b2cdbcb170ca741ab440fb83
# 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.62.4@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.62.x] Fix isolated workspaces ignored when using StepTemplate (#8273)
solated workspaces are now correctly set when using in conjuction with StepTemplate
- 🐛 [release-v0.62.x] Mark steps as deleted when TaskRun fails (#8295)
Misc
- 🔨 [release-v0.62.x] Backport release "scripts" changes from main… (#8332)
Docs
Thanks
Thanks to these contributors who contributed to v0.62.4!
- ❤️ @tekton-robot
- ❤️ @vdemeester
Extra shout-out for awesome release notes: