github tektoncd/operator v0.77.1
Tekton Operator release v0.77.1

8 hours ago

Tekton Operator release v0.77.1 "Release v0.77.1"

-Docs @ v0.77.1
-Examples @ v0.77.1

Installation one-liner

kubectl apply -f https://infra.tekton.dev/tekton-releases/operator/previous/v0.77.1/release.yaml

Attestation

The Rekor UUID for this release is 108e9186e8c5677a47dea07c7b48970998c0421a867d751b6748b98ebd87b540c06c7e231b40e0c4

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a47dea07c7b48970998c0421a867d751b6748b98ebd87b540c06c7e231b40e0c4
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/operator/previous/v0.77.1/release.yaml
REKOR_UUID=108e9186e8c5677a47dea07c7b48970998c0421a867d751b6748b98ebd87b540c06c7e231b40e0c4

# 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.77.1@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

Misc

  • 🔨 ci(e2e): fix ko >=v0.19 SBOM push failure on plain-HTTP registry (#3654)
  • 🔨 chore(deps): bump github.com/tektoncd/pipeline from 1.3.5 to 1.3.6 (#3606)
  • 🔨 chore(deps): bump chainguard-dev/actions/kind-diag from 1.5.11 to 1.5.16 (#3602)
  • 🔨 chore(deps): bump k8s.io/apiextensions-apiserver from 0.32.9 to 0.32.13 (#3574)
  • 🔨 chore(deps): bump github.com/tektoncd/pipeline from 1.3.4 to 1.3.5 (#3572)
  • 🔨 chore(deps): bump github.com/sigstore/cosign/v2 from 2.6.2 to 2.6.3 (#3571)
  • 🔨 chore(deps): bump github/codeql-action from 4.31.6 to 4.31.11 (#3565)
  • 🔨 chore(deps): bump golangci/golangci-lint-action from 9.2.0 to 9.2.1 (#3562)
  • 🔨 chore(deps): bump actions/checkout from 6.0.0 to 6.0.3 (#3560)
  • 🔨 chore(deps): bump peter-evans/create-pull-request from 7.0.9 to 7.0.11 (#3559)
  • 🔨 chore(deps): bump peter-evans/slash-command-dispatch from 5.0.0 to 5.0.2 (#3558)

Docs

Thanks

Thanks to these contributors who contributed to v0.77.1!

Extra shout-out for awesome release notes:

Don't miss a new operator release

NewReleases is sending notifications on new releases.