Skip to content

Tekton Pipeline release v1.6.7 "Sphynx Sentinels"

Choose a tag to compare

@tekton-robot tekton-robot released this 27 Aug 10:37

-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.yaml

Attestation

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";
done

Changes

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!

Extra shout-out for awesome release notes: