Tekton Chains release v0.27.0
Tekton Chains release v0.27.0
-Docs @ v0.27.0
-Examples @ v0.27.0
Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/chains/previous/v0.27.0/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677a71df6799eebef48b36c3a91fcb47d8a0bd0d6ed9943b2cbc07271e8cf521366d
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a71df6799eebef48b36c3a91fcb47d8a0bd0d6ed9943b2cbc07271e8cf521366d
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/chains/previous/v0.27.0/release.yaml
REKOR_UUID=108e9186e8c5677a71df6799eebef48b36c3a91fcb47d8a0bd0d6ed9943b2cbc07271e8cf521366d
# 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.27.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
-
✨ feat(metrics): Migrate from OpenCensus to OpenTelemetry (#1550)
-
✨ feat(oci): support insecure OCI registry (#1374)
Fixes
-
🐛 Fix duplicate .att/.sig OCI layers for same digest type hints (#1601)
-
🐛 Handle signing OCI artifacts in *ARTIFACT_OUTPUTS (#1578)
-
🐛 chore(ci): update cherry-pick workflow to fix multi-commit PRs (#1539)
-
🐛 fix: microshift e2e test failures on merge (#1500)
Misc
- 🔨 includes dependency and doc updates
Thanks
Thanks to these contributors who contributed to v0.27.0!
- ❤️ @AlanGreene
- ❤️ @ab-ghosh
- ❤️ @anithapriyanatarajan
- ❤️ @app/dependabot
- ❤️ @bradbeck
- ❤️ @emmanuel-ferdman
- ❤️ @enarha
- ❤️ @infernus01
- ❤️ @jkhelil
- ❤️ @l-qing
- ❤️ @ngelman1
- ❤️ @socialsister
- ❤️ @vdemeester
Extra shout-out for awesome release notes:
- 😍 @AlanGreene
- 😍 @ab-ghosh
- 😍 @anithapriyanatarajan
- 😍 @app/dependabot
- 😍 @bradbeck
- 😍 @emmanuel-ferdman
- 😍 @enarha
- 😍 @infernus01
- 😍 @jkhelil
- 😍 @l-qing
- 😍 @ngelman1
- 😍 @socialsister
- 😍 @vdemeester