-Docs @ v0.24.0
-Examples @ v0.24.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.24.0/release.yaml
Attestation
The Rekor UUID for this release is 108e9186e8c5677a78ff0273140a120730eca2b803dfc0fc1a07dfd419735c6f3a0119881c505a95
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a78ff0273140a120730eca2b803dfc0fc1a07dfd419735c6f3a0119881c505a95
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.24.0/release.yaml
REKOR_UUID=108e9186e8c5677a78ff0273140a120730eca2b803dfc0fc1a07dfd419735c6f3a0119881c505a95
# 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.24.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
Misc
-
🔨 Update go to 1.23 and plumbing vendoring (#1284)
-
🔨 Bump the all group across 1 directory with 9 updates (#1302)
-
🔨 Bump golangci/golangci-lint-action from 6.1.0 to 6.2.0 (#1290)
-
🔨 Bump ko-build/setup-ko from 0.7 to 0.8 (#1289)
-
🔨 Bump imjasonh/setup-ko from 0.7 to 0.8 (#1288)
-
🔨 Bump the all group across 1 directory with 16 updates (#1287)
-
🔨 Bump the all group across 1 directory with 9 updates (#1271)
-
🔨 Bump the all group across 1 directory with 7 updates (#1263)
-
🔨 Bump the all group across 1 directory with 13 updates (#1257)
-
🔨 Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#1240)
Docs
- 📖 Add buildType for Chains format slsa/v2alpha2 (SLSAv1.0 predicate). (#906)
Thanks
Thanks to these contributors who contributed to v0.24.0!
- ❤️ @PuneetPunamiya
- ❤️ @afrittoli
- ❤️ @chitrangpatel
- ❤️ @dependabot[bot]
- ❤️ @jkhelil
- ❤️ @lcarva
- ❤️ @morri-son
Extra shout-out for awesome release notes:
- 😍 @PuneetPunamiya
- 😍 @afrittoli
- 😍 @chitrangpatel
- 😍 @jkhelil
- 😍 @lcarva
- 😍 @morri-son