Releases: tektoncd/operator
Tekton Operator release v0.75.0 "Buff-sided robin"
-Docs @ v0.75.0
-Examples @ v0.75.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.75.0/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.75.0/release.yaml
REKOR_UUID=
# 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.75.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
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.24.0 |
Dashboard | tektoncd | v0.54.0 |
Hub | tektoncd | v1.20.0 |
Manual Approval Gate | openshift-pipelines | v0.5.0 |
Pipeline | tektoncd | v0.68.0 |
Pipeline-as-code | openshift-pipelines | v0.33.0 |
Results | tektoncd | v0.14.0 |
Triggers | tektoncd | v0.31.0 |
Features
- ✨ Update tekton-cache stepAction release versions (#2573)
Fixes
Misc
-
🔨 Fix fetch-component-release task in nightly release (#2547)
-
🔨 Bump github.com/spf13/cobra from 1.8.1 to 1.9.1 (#2591)
-
🔨 Bump k8s.io/apiextensions-apiserver from 0.29.13 to 0.29.14 (#2590)
-
🔨 Bump golang.org/x/mod from 0.22.0 to 0.23.0 (#2563)
-
🔨 Bump github.com/tektoncd/triggers from 0.30.1 to 0.31.0 (#2562)
-
🔨 Bump github.com/sigstore/cosign/v2 from 2.4.1 to 2.4.2 (#2561)
-
🔨 Bump golang.org/x/sync from 0.10.0 to 0.11.0 (#2560)
-
🔨 Bump gotest.tools/v3 from 3.5.1 to 3.5.2 (#2559)
-
🔨 Bump github.com/tektoncd/pipeline from 0.66.0 to 0.68.0 (#2550)
-
🔨 Bump k8s.io/apiextensions-apiserver from 0.29.12 to 0.29.13 (#2521)
-
🔨 Bump golang.org/x/net from 0.28.0 to 0.33.0 (#2496)
-
🔨 Bump github.com/tektoncd/triggers from 0.30.0 to 0.30.1 (#2483)
-
🔨 Bump k8s.io/apiextensions-apiserver from 0.29.11 to 0.29.12 (#2457)
-
🔨 Bump golang.org/x/sync from 0.9.0 to 0.10.0 (#2449)
-
🔨 Bump github.com/tektoncd/pipeline from 0.65.2 to 0.66.0 (#2448)
-
🔨 Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (#2424)
-
🔨 Bump k8s.io/apiextensions-apiserver from 0.29.10 to 0.29.11 (#2423)
-
🔨 Bump github.com/tektoncd/pipeline from 0.65.1 to 0.65.2 (#2422)
Docs
- 📖 Update DEVELOPMENT.md (#2465)
Thanks
Thanks to these contributors who contributed to v0.75.0!
- ❤️ @AlanGreene
- ❤️ @PuneetPunamiya
- ❤️ @aThorp96
- ❤️ @anithapriyanatarajan
- ❤️ @clintonsteiner
- ❤️ @dependabot[bot]
- ❤️ @enarha
- ❤️ @jkhelil
- ❤️ @l-qing
- ❤️ @mbpavan
- ❤️ @pramodbindal
- ❤️ @pratap0007
- ❤️ @savitaashture
- ❤️ @vdemeester
Extra shout-out for awesome release notes:
- 😍 @AlanGreene
- 😍 @PuneetPunamiya
- 😍 @aThorp96
- 😍 @clintonsteiner
- 😍 @enarha
- 😍 @jkhelil
- 😍 @l-qing
- 😍 @mbpavan
- 😍 @pramodbindal
- 😍 @pratap0007
- 😍 @savitaashture
- 😍 @vdemeester
tekton-operator-0.75.0
A Helm chart to deploy the Tekton Operator and its CRDs
Tekton Operator release v0.74.1 "Buzzing flowerpecker"
-Docs @ v0.74.1
-Examples @ v0.74.1
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.74.1/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.74.1/release.yaml
REKOR_UUID=
# 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.74.1@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
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.23.1 |
Dashboard | tektoncd | v0.52.0 |
Hub | tektoncd | v1.19.2 |
Manual Approval Gate | openshift-pipelines | v0.4.1 |
Pipeline | tektoncd | v0.65.5 |
Pipeline-as-code | openshift-pipelines | v0.29.1 |
Results | tektoncd | v0.13.3 |
Triggers | tektoncd | v0.30.1 |
Features
Fixes
- 🐛 [0.74.x] Update pruner sha with latest (#2461)
- 🐛 [0.74.x] Update ecosystem task version to fix buildah issue (#2481)
Misc
- 🔨 Bump golang.org/x/crypto to v0.31.0 (#2459)
Docs
Thanks
Thanks to these contributors who contributed to v0.74.1!
- ❤️ @PuneetPunamiya
- ❤️ @github-actions[bot]
- ❤️ @jkhelil
- ❤️ @savitaashture
- ❤️ @tekton-robot
Extra shout-out for awesome release notes:
Tekton Operator release v0.73.2 "Baglafecht weaver"
-Docs @ v0.73.2
-Examples @ v0.73.2
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.73.2/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.73.2/release.yaml
REKOR_UUID=
# 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.73.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
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.22.3 |
Dashboard | tektoncd | v0.49.0 |
Hub | tektoncd | v1.18.1 |
Manual Approval Gate | openshift-pipelines | v0.3.1 |
Pipeline | tektoncd | v0.62.7 |
Pipeline-as-code | openshift-pipelines | v0.28.2 |
Results | tektoncd | v0.12.3 |
Triggers | tektoncd | v0.29.2 |
Features
Fixes
Misc
- 🔨 Upgrade golang.org/x/crypto to 0.31.0 (#2456)
Docs
Thanks
Thanks to these contributors who contributed to v0.73.2!
- ❤️ @github-actions[bot]
- ❤️ @jkandasa
- ❤️ @jkhelil
- ❤️ @savitaashture
- ❤️ @tekton-robot
Extra shout-out for awesome release notes:
Tekton Operator release v0.74.0 "Babbling starling" LTS
🎉 v0.74.0 - LTS 🎉
-Docs @ v0.74.0
-Examples @ v0.74.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.74.0/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.74.0/release.yaml
REKOR_UUID=
# 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.74.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
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.23.0 |
Dashboard | tektoncd | v0.52.0 |
Hub | tektoncd | v1.19.0 |
Manual Approval Gate | openshift-pipelines | v0.4.0 |
Pipeline | tektoncd | v0.65.2 |
Pipeline-as-code | openshift-pipelines | v0.29.0 |
Results | tektoncd | v0.13.0 |
Triggers | tektoncd | v0.30.0 |
Features
- ✨ fix(pipelines-scc): add ephemeral volumes (#2308)
`pipelines-scc` supports `ephemeral` volumes
Fixes
Misc
- 🔨 Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#2406)
- 🔨 Bump github.com/tektoncd/triggers from 0.29.1 to 0.30.0 (#2405)
- 🔨 Bump golang.org/x/mod from 0.21.0 to 0.22.0 (#2404)
- 🔨 Bump golang.org/x/sync from 0.8.0 to 0.9.0 (#2403)
- 🔨 Bump github.com/tektoncd/pipeline from 0.65.0 to 0.65.1 (#2402)
- 🔨 Bump github.com/tektoncd/pipeline from 0.64.0 to 0.65.0 (#2384)
- 🔨 Bump k8s.io/apiextensions-apiserver from 0.29.9 to 0.29.10 (#2383)
- 🔨 Bump github.com/sigstore/cosign/v2 from 2.4.0 to 2.4.1 (#2373)
- 🔨 Bump github.com/theupdateframework/go-tuf/v2 from 2.0.0 to 2.0.1 (#2367)
- 🔨 Bump github.com/open-policy-agent/opa from 0.67.0 to 0.68.0 (#2363)
- 🔨 Bump github.com/tektoncd/pipeline from 0.63.0 to 0.64.0 (#2362)
- 🔨 Bump k8s.io/apiextensions-apiserver from 0.29.8 to 0.29.9 (#2319)
- 🔨 Bump golang.org/x/mod from 0.20.0 to 0.21.0 (#2315)
- 🔨 Bump github.com/tektoncd/triggers from 0.29.0 to 0.29.1 (#2314)
- 🔨 Bump github.com/sigstore/sigstore-go from 0.5.1 to 0.6.1 (#2307)
- 🔨 Bump github.com/tektoncd/pipeline from 0.62.2 to 0.63.0 (#2300)
Docs
Thanks
Thanks to these contributors who contributed to v0.74.0!
- ❤️ @ArthurVardevanyan
- ❤️ @dependabot[bot]
- ❤️ @enarha
- ❤️ @jkandasa
- ❤️ @jkhelil
- ❤️ @pratap0007
- ❤️ @savitaashture
- ❤️ @vdemeester
Extra shout-out for awesome release notes:
tekton-operator-0.74.0
A Helm chart to deploy the Tekton Operator and its CRDs
tekton-operator-0.73.1
A Helm chart to deploy the Tekton Operator and its CRDs
Tekton Operator release v0.73.1 "Spotted Owlet" LTS
🎉 v0.73.1 - LTS 🎉
-Docs @ v0.73.1
-Examples @ v0.73.1
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.73.1/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.73.1/release.yaml
REKOR_UUID=
# 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.73.1@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
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.22.2 |
Dashboard | tektoncd | v0.49.0 |
Hub | tektoncd | v1.18.0 |
Manual Approval Gate | openshift-pipelines | v0.3.0 |
Pipeline | tektoncd | v0.62.3 |
Pipeline-as-code | openshift-pipelines | v0.28.0 |
Results | tektoncd | v0.12.1 |
Triggers | tektoncd | v0.29.1 |
Features
Fixes
- 🐛 [0.73.x] fix pruner image in 0.73.0 (#2370)
Misc
Docs
Thanks
Thanks to these contributors who contributed to v0.73.1!
- ❤️ @jkandasa
Extra shout-out for awesome release notes:
Tekton Operator release v0.73.0 "Spotted Owlet" LTS
🎉 v0.73.0 - LTS 🎉
-Docs @ v0.73.0
-Examples @ v0.73.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.73.0/release.yaml
Attestation
The Rekor UUID for this release is ``
Obtain the attestation:
REKOR_UUID=
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/operator/previous/v0.73.0/release.yaml
REKOR_UUID=
# 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.73.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
Component | Org | Version |
---|---|---|
Chains | tektoncd | v0.22.2 |
Dashboard | tektoncd | v0.49.0 |
Hub | tektoncd | v1.18.0 |
Manual Approval Gate | openshift-pipelines | v0.3.0 |
Pipeline | tektoncd | v0.62.3 |
Pipeline-as-code | openshift-pipelines | v0.28.0 |
Results | tektoncd | v0.12.1 |
Triggers | tektoncd | v0.29.1 |
Features
- ✨ [main] add support to configure dashboard air gap image (#2262)
Support added to dashboard air gap image, the image can be replaced on the operator deployment environment variable `IMAGE_DASHBOARD_TEKTON_DASHBOARD`
Fixes
-
🐛 Fix installerset issue for resolver task and stepaction (#2303)
-
🐛 Fix HPA apiVersion #2250
-
🐛 Fix chains default config (#2269)
Misc
- 🔨 Bump github.com/tektoncd/pipeline from 0.62.1 to 0.62.2 (#2292)
- 🔨 Bump github.com/tektoncd/triggers from 0.28.0 to 0.29.0 (#2289)
- 🔨 Bump k8s.io/apiextensions-apiserver from 0.29.7 to 0.29.8 (#2286)
- 🔨 Bump github.com/sigstore/cosign/v2 from 2.3.0 to 2.4.0 (#2284)
- 🔨 Bump github.com/tektoncd/pipeline from 0.62.0 to 0.62.1 (#2283)
- 🔨 Bump github.com/docker/docker from 26.1.4+incompatible to 26.1.5+incompatible (#2282)
- 🔨 Bump golang.org/x/sync from 0.7.0 to 0.8.0 (#2274)
- 🔨 Bump golang.org/x/mod from 0.19.0 to 0.20.0 (#2273)
- 🔨 Bump github.com/docker/docker from 26.1.3+incompatible to 26.1.4+incompatible (#2270)
- 🔨 Bump github.com/sigstore/cosign/v2 from 2.2.4 to 2.3.0 (#2265)
- 🔨 Bump github.com/tektoncd/pipeline from 0.61.1 to 0.62.0 (#2264)
- 🔨 Bump k8s.io/apiextensions-apiserver from 0.29.6 to 0.29.7 (#2252)
- 🔨 Bump github.com/tektoncd/pipeline from 0.61.0 to 0.61.1 (#2249)
Docs
- 📖 chore: fix typo in tekton/README.md (#2259)
Thanks
Thanks to these contributors who contributed to v0.73.0!
- ❤️ @Aneesh-M-Bhat
- ❤️ @PuneetPunamiya
- ❤️ @anithapriyanatarajan
- ❤️ @dependabot[bot]
- ❤️ @enarha
- ❤️ @github-actions[bot]
- ❤️ @jkandasa
- ❤️ @jkhelil
- ❤️ @l-qing
- ❤️ @piyush-garg
- ❤️ @pratap0007
- ❤️ @savitaashture
- ❤️ @tekton-robot
- ❤️ @vdemeester
Extra shout-out for awesome release notes:
tekton-operator-0.73.0
A Helm chart to deploy the Tekton Operator and its CRDs