github tektoncd/triggers v0.33.0
Tekton Triggers release v0.33.0 "Tekton Triggers"

25 days ago

-Docs @ v0.33.0
-Examples @ v0.33.0

Installation one-liner

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

Attestation

The Rekor UUID for this release is 108e9186e8c5677a920a272eb27aa6fcc7d307787cce0478a57a43ac0c60867837b79d610ea3608e

Obtain the attestation:

REKOR_UUID=108e9186e8c5677a920a272eb27aa6fcc7d307787cce0478a57a43ac0c60867837b79d610ea3608e
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/triggers/previous/${VERSION_TAG}/release.yaml
INTERCEPTORS_FILE=https://storage.googleapis.com/tekton-releases/triggers/previous/${VERSION_TAG}/interceptors.yaml
REKOR_UUID=108e9186e8c5677a920a272eb27aa6fcc7d307787cce0478a57a43ac0c60867837b79d610ea3608e

# 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.33.0@sha256:" + .digest.sha256')

# Download the release file
curl "$RELEASE_FILE" > release.yaml
curl "$INTERCEPTORS_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

  • ✨ Add anti-affinity rules to controller's replicas (#1861)
    As part of improving high availability (HA) for the Tekton Triggers controller, this update adds a preferredDuringSchedulingIgnoredDuringExecution pod anti-affinity rule. This ensures that multiple replicas of the controller are preferably scheduled on different nodes, reducing the risk of service disruption in case of a node failure.

Fixes

  • 🐛 Fix panic on concurrent map writes (#1866)

fix data race that can occur when using a TriggerGroup that selects more than one Trigger with extensions

  • 🐛 Implement deep-copy fix for data race (#1871)
  • 🐛 Fix panic for e2e go tests (#1857)
  • 🐛 Add Security Context to Getting Started Example (#1855)
  • 🐛 fix: Issue in eventlisteners e2e when kubernetes host has a path (#1805)

Misc

  • 🔨 Bump pipelines and other dependencies (#1868)

Uodate CEL Go to v0.26.0 and Pipelines to 1.3.1.

  • 🔨 cleanup: fix golangci-lint setup in Makefile (#1849)
  • 🔨 Update the ko to v0.18.0 with go1.24.5 (#1872)
  • 🔨 Bump the all group across 1 directory with 2 updates (#1869)
  • 🔨 Add skip security context flag in e2e script (#1853)
  • 🔨 Bump github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0 in /tools (#1852)
  • 🔨 Bump step-security/harden-runner from 2.12.1 to 2.12.2 (#1851)
  • 🔨 Run Integration tests on microshift (#1850)
  • 🔨 Bump step-security/harden-runner from 2.12.0 to 2.12.1 (#1848)
  • 🔨 Migrate golangci lint to version 2 (#1845)
  • 🔨 Fix subpath capitalisation (#1843)
  • 🔨 Bump the all group across 1 directory with 8 updates (#1842)
  • 🔨 Bump actions/setup-go from 5.4.0 to 5.5.0 (#1839)
  • 🔨 Update some dependancy from dependabot (#1870)
  • 🔨 fix: remove duplicated 'the' in triggers-api docs (#1847)

Docs

  • 📖 Update release doc with v0.32.0 (#1859)

Thanks

Thanks to these contributors who contributed to v0.33.0!

Extra shout-out for awesome release notes:

Don't miss a new triggers release

NewReleases is sending notifications on new releases.