🎉 v0.73.1 - LTS 🎉
-Docs @ v0.73.1
-Examples @ v0.73.1
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.73.1/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.73.1/release.yaml
REKOR_UUID=
# 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.73.1@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
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.22.2 |
Dashboard | tektoncd | v0.49.0 |
Hub | tektoncd | v1.18.0 |
Manual Approval Gate | openshift-pipelines | v0.3.0 |
Pipeline | tektoncd | v0.62.3 |
Pipeline-as-code | openshift-pipelines | v0.28.0 |
Results | tektoncd | v0.12.1 |
Triggers | tektoncd | v0.29.1 |
Features
Fixes
- 🐛 [0.73.x] fix pruner image in 0.73.0 (#2370)
Misc
Docs
Thanks
Thanks to these contributors who contributed to v0.73.1!
- ❤️ @jkandasa
Extra shout-out for awesome release notes: