Tekton Pipeline release v0.41.2 "Nebelung Nomad"
π latest knative 1.8 and conversion webhook fix π
-Docs @ v0.41.2
-Examples @ v0.41.2
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.41.2/release.yaml
Attestation
The Rekor UUID for this release is 24296fb24b8ad77a407e5a4d07e1f8c2f6981364ad9b64e7cbccd7b3ee834b28e46a1caaf33b51ae
Obtain the attestation:
REKOR_UUID=24296fb24b8ad77a407e5a4d07e1f8c2f6981364ad9b64e7cbccd7b3ee834b28e46a1caaf33b51ae
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/pipeline/previous/v0.41.2/release.yaml
REKOR_UUID=24296fb24b8ad77a407e5a4d07e1f8c2f6981364ad9b64e7cbccd7b3ee834b28e46a1caaf33b51ae
# 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.41.2@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
Fixes
- π hotfix 0.41.x no logs in stdout/stderr if uses stdoutConfig (#6503)
users can still view the output through the Pod log API if stdoutConfig.path or stderrConfig.path is specified
- π [release-v0.41.x] Make sure we pass the live config to the conversion webhook (#6461)
ake sure the conversion webhook sees the live configmaps instead of the default ones
- π [release-v0.41.x] don't validate skipped task results for pipeline results (#6372)
A fix for regression issue that previously we don't fail the run when skipped task results don't emit, but failed when validation is introduced.
Misc
- π¨ [release-v0.41.x] fix CI for LTS release (#6213)
Fixing Tekton CI for release-v0.41.x
- π¨ [release-v0.41.x] picking up latest changes in knative 1.8 (#6201)
Bring the latest performance fix in knative/pkg which helps reduce CPU/Memory usage for huge pipelines.
- π¨ [release-v0.41.x] [TEP074] Remove git-ssh Examples (#6241)
Docs
Thanks
Thanks to these contributors who contributed to v0.41.2!
- β€οΈ @Yongxuanzhang
- β€οΈ @chengjoey
- β€οΈ @pritidesai
- β€οΈ @tekton-robot
Extra shout-out for awesome release notes:
- π @Yongxuanzhang
- π @chengjoey
- π @pritidesai
- π @tekton-robot