-Docs @ v0.23.0
-Examples @ v0.23.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.23.0/release.yaml
Attestation
The Rekor UUID for this release is 108e9186e8c5677ab986b84dbd84e8bcaeb653ee623796517fd53400ea437f6eb4623849befd0dfb
Obtain the attestation:
REKOR_UUID=108e9186e8c5677ab986b84dbd84e8bcaeb653ee623796517fd53400ea437f6eb4623849befd0dfb
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/chains/previous/v0.23.0/release.yaml
REKOR_UUID=108e9186e8c5677ab986b84dbd84e8bcaeb653ee623796517fd53400ea437f6eb4623849befd0dfb
# 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.23.0@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
- ✨ Support mongo server url path (#1213)
Fixes
- 🐛 Fix nil pointer dereference when taksrun is canceled (#1237)
- 🐛 Fix mapping between Status.Steps and Status.TaskSpec.Steps (#1188)
Misc
- 🔨 Controller image is now available at ghcr.io/tektoncd/chains/controller-92006fd957c0afd31de6a40b3e33b39f
Docs
- 📖 Added visual guide representing chains config options (#1183)
Thanks
Thanks to these contributors who contributed to v0.23.0!
- ❤️ @AlanGreene
- ❤️ @PuneetPunamiya
- ❤️ @afrittoli
- ❤️ @anithapriyanatarajan
- ❤️ @dependabot[bot]
- ❤️ @jkhelil
- ❤️ @lcarva
- ❤️ @vdemeester
Extra shout-out for awesome release notes: