Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/results/previous/v0.20.0/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677a7b39096fdb8731f7e7cf099b810464f05adabb9b24093868e089df76e8935cb8
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a7b39096fdb8731f7e7cf099b810464f05adabb9b24093868e089df76e8935cb8
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/results/previous/v0.20.0/release.yaml
REKOR_UUID=108e9186e8c5677a7b39096fdb8731f7e7cf099b810464f05adabb9b24093868e089df76e8935cb8
# 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.20.0@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";
doneChanges
Features
- ✨ Add retention policy support for CustomRun records (#1361)
The retention policy agent now supports CustomRuns, both standalone and as part of PipelineRun.
- ✨ plugin(logs): support time based queries for Splunk (#1317)
Reduces the load to Splunk servers by limiting the search window with start/endTime
- ✨ Enable Server-Side Apply for finalizers management (#1322)
Switch finalizer management to Server-Side Apply patch to improve performance and reduce API load.
Fixes
- 🐛 fix(watcher): populate RecordSummary StartTime/EndTime from Status fields (#1285)
Fix RecordSummary StartTime always being NULL and EndTime being NULL for
failed/timed-out/cancelled runs. Timestamps are now read directly from the
run's Status.StartTime and Status.CompletionTime fields instead of from
Knative conditions.
Misc
- 🔨 chore: add dependabot for active release branches (#1360)
- 🔨 Bump pipelines to the latest version (#1414)
- 🔨 ci: Bump golangci-lint version (#1403)
- 🔨 Move README.md back to docs/ and symlink from root (#1370)
- 🔨 chore(deps): bump github.com/mattn/go-sqlite3 from 1.14.44 to 1.14.47 (#1365)
- 🔨 chore(deps): bump k8s.io/apimachinery from 0.35.5 to 0.35.6 (#1363)
Docs
Thanks
Thanks to these contributors who contributed to v0.20.0!
- ❤️ @SergK
- ❤️ @app/dependabot
- ❤️ @divyansh42
- ❤️ @enarha
- ❤️ @jkhelil
- ❤️ @michaelalang
Extra shout-out for awesome release notes:
- 😍 @SergK
- 😍 @divyansh42
- 😍 @enarha
- 😍 @jkhelil
- 😍 @michaelalang