Download Latest Version Tekton Pipeline release v1.2.0 _Dragon Li Dreadnought_ source code.zip (23.8 MB)
Email in envelope

Get an email when there's a new version of Tekton Pipelines

Home / v1.1.0
Name Modified Size InfoDownloads / Week
Parent folder
release.yaml 2025-06-04 1.6 MB
release.notags.yaml 2025-06-04 1.6 MB
README.md 2025-05-29 7.2 kB
Tekton Pipeline release v1.1.0 _Selkirk Rex Saul Tigh_ source code.tar.gz 2025-05-29 15.5 MB
Tekton Pipeline release v1.1.0 _Selkirk Rex Saul Tigh_ source code.zip 2025-05-29 23.7 MB
Totals: 5 Items   42.3 MB 0

-Docs @ v1.1.0 -Examples @ v1.1.0

Installation one-liner

:::shell
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v1.1.0/release.yaml

Attestation

The Rekor UUID for this release is 108e9186e8c5677a4abf3bb44246e552fdd917a58075df15b5f99ad1aa9e1da6ffd3c6aebc69689d

Obtain the attestation:

:::shell
REKOR_UUID=108e9186e8c5677a4abf3bb44246e552fdd917a58075df15b5f99ad1aa9e1da6ffd3c6aebc69689d
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:

:::shell
RELEASE_FILE=https://storage.googleapis.com/tekton-releases/pipeline/previous/v1.1.0/release.yaml
REKOR_UUID=108e9186e8c5677a4abf3bb44246e552fdd917a58075df15b5f99ad1aa9e1da6ffd3c6aebc69689d

# 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.1.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

Features

Fixes

  • :bug: fix: Ensure retryable errors during validation do not fail Runs (#8746)

Retryable errors during dry-run Task validation will no longer cause a PipelineRun to be failed.

  • :bug: Add oomkilled reason (#8709)

TaskRuns that fail due to Out of Memory (OOM) conditions will now show the termination reason in their failure message.

Misc

Docs

  • :book: docs: add more explicit language in the Pipelines in Pipelines docs (#8767)
  • :book: Update releases.md after v1.0.0 (#8761)
  • :book: fix(docs): correct documentation link errors related to sidecar-logs (#8744)
  • :book: Add ghcr.io migration banner to README.md. (#8693)

Thanks

Thanks to these contributors who contributed to v1.1.0! * :heart: @AlanGreene * :heart: @aThorp96 * :heart: @afrittoli * :heart: @dependabot[bot] * :heart: @infernus01 * :heart: @l-qing * :heart: @twoGiants * :heart: @vdemeester

Extra shout-out for awesome release notes: * :heart_eyes: @aThorp96 * :heart_eyes: @infernus01

Source: README.md, updated 2025-05-29