MyGit

v0.32.3

tektoncd/pipeline

版本发布时间: 2022-03-18 01:13:12

tektoncd/pipeline最新发布版本:v0.60.1(2024-05-29 02:09:12)

-Docs @ v0.32.3 -Examples @ v0.32.3

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v0.32.3/release.yaml

Attestation

The Rekor UUID for this release is db07ee76eae2ae06792990fde3c18e2551a5a820b242d5766dff8af5b7ee632b

Obtain the attestation:

REKOR_UUID=db07ee76eae2ae06792990fde3c18e2551a5a820b242d5766dff8af5b7ee632b
rekor-cli get --uuid $REKOR_UUID --format json | jq -r .Attestation | base64 --decode | 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.32.3/release.yaml
REKOR_UUID=db07ee76eae2ae06792990fde3c18e2551a5a820b242d5766dff8af5b7ee632b

# Obtains the list of images with sha from the attestation
REKOR_ATTESTATION_IMAGES=$(rekor-cli get --uuid "$REKOR_UUID" --format json | jq -r .Attestation | base64 --decode | jq -r '.subject[]|.name + ":v0.32.3@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

There are no code changes in this release. Tekton Pipeline release v0.32.3 is identical to v0.32.2, but rebuilt with golang v1.17.7.

Features

Fixes

Misc

Docs

Thanks

Thanks to these contributors who contributed to v0.32.3!

相关地址:原始地址 下载(tar) 下载(zip)

1、 release.notags.yaml 75.53KB

2、 release.yaml 75.59KB

查看:2022-03-18发行的版本