Tekton Pipeline release v1.6.7 "Sphynx Sentinels"
-Docs @ v1.6.7
-Examples @ v1.6.7
Installation one-liner
kubectl apply -f https://infra.tekton.dev/tekton-releases/pipeline/previous/v1.6.7/release.yamlAttestation
The Rekor UUID for this release is 108e9186e8c5677a133b926c543a724c547fb69c640f2b7ce2c5bceae64ded886cfc5afb71f33880
Obtain the attestation:
REKOR_UUID=108e9186e8c5677a133b926c543a724c547fb69c640f2b7ce2c5bceae64ded886cfc5afb71f33880
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/pipeline/previous/v1.6.7/release.yaml
REKOR_UUID=108e9186e8c5677a133b926c543a724c547fb69c640f2b7ce2c5bceae64ded886cfc5afb71f33880
# 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 + ":v1.6.7@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
Fixes
- π [release-v1.6.x] Fix PipelineRun stuck in ResolvingTaskRef when RR enqueue is missed (#10488)
ix PipelineRun remaining stuck in ResolvingTaskRef when a ResolutionRequest completion event is missed by periodically requeueing while remote resolution is in progress
- π [cherry-pick: release-v1.6.x] fix(resolvers): honor leader-election bucket ownership (#10483)
ix resolver replicas processing ResolutionRequests outside their leader-election bucket.
- π [cherry-pick: release-v1.6.x] fix(resolvers): skip re-resolution when ResolutionRequest data is already present (#10478)
Skip re-resolution of ResolutionRequests when Status.Data is already present, preventing hundreds of redundant reconciliations under load.
Misc
- π¨ [release-v1.6.x] bump ossf/scorecard-action from 2.4.3 to 2.4.4 (#10497)
Docs
Thanks
Thanks to these contributors who contributed to v1.6.7!
- β€οΈ @app/dependabot
- β€οΈ @tekton-robot
- β€οΈ @vdemeester
Extra shout-out for awesome release notes:
- π @tekton-robot
- π @vdemeester