Tekton Operator release v0.71.0 "Siberian Stonechat" LTS
🎉 v0.71.0 - LTS 🎉
-Docs @ v0.71.0
-Examples @ v0.71.0
Installation one-liner
kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.71.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.71.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.71.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 |
---|---|---|
Pipeline | tektoncd | v0.59.0 |
Dashboard | tektoncd | v0.46.0 |
Triggers | tektoncd | v0.27.0 |
Hub | tektoncd | v1.17.0 |
Chains | tektoncd | v0.20.1 |
Results | tektoncd | v0.10.0 |
Pipeline-as-code | openshift-pipelines | v0.27.0 |
Manual Approval Gate | openshift-pipelines | v0.2.0 |
Features
- ✨ Add manual approval component in Operator (#2138)
Manual Approval Gate controller can be managed from operator.
Manual Approval Gate - https://github.com/openshift-pipelines/manual-approval-gate/
- ✨ Expose feature flags for disabling inline spec in Pipelines (#2133)
Inline specifications can be disabled for specific resources only. To achieve that, set the disable-inline-spec in Pipeline properties to a comma-separated list of the desired resources. Valid values are `pipeline`, `pipelinerun` and `taskrun`.
- ✨ [main] adds target namsepace metadata support (#2132)
Under TektonConfig CR, `spec.targetNamespaceMetadata` allows user to update their custom `labels` and `annotations` to the target namespace.
- ✨ SRVKP-4014: Pull tasks from the tekton ecosystem catalog (#2127)
Added new Addon field "namespacedTasks" to support populating openshift-pipelines namespace with tasks similar to the current clusterTasks.
- ✨ [main] HPA creation enabled via options (#2092)
HPA creation enabled
Fixes
- 🐛 Move clustertask and clustertriggerbinding role to component (#2164)
- 🐛 fix: prevent upgrade failures caused by deleting resources (#2121)
- 🐛 [2100] Reconcile a namespace again with missing rolebinding (#2101)
- 🐛 Fix Conflict between Results PreReconciler and Reconciler (#2008)
- 🐛 Fix the results reconciler's manifest reference (#2003)
- 🐛 [main] apply nodeSelector, tolerations, and priorityClassName into pipelines-console-plugin pod (#2109)
- 🐛 [main] perform manifest transformation earlier (#2083)
- 🐛 Fix filter and Transform for TektonResult (#2022)
- 🐛 Fix Results version not reflecting in certain flow (#2007)
Misc
- 🔨 Bound SA Token to Tekton Result API server in OpenShift (#2145)
Bound SA Token to Tekton Result API server Pod and mount it a`t /var/run/secrets/openshift/serviceaccount`.
- 🔨 Deprecate TLSHostnameOverride in TektonResult Properties (#2144)
Deprecate TLSHostnameOverride in TektonResult.Spec Properties
- 🔨 Disallow to update the targetNamespace in TektonConfig CR (#2065)
Disallow to update the targetNamespace in TektonConfig CR
- 🔨 Disallow to update targetNamespace in Hub CR (#2015)
targetNamespace can not be updated from Hub CR. Needs to be deleted the Hub CR first and create HUB CR with new targetNamespace
- 🔨 Bump github.com/tektoncd/triggers from 0.26.2 to 0.27.0 (#2147)
- 🔨 Bump github.com/tektoncd/triggers from 0.26.1 to 0.26.2 (#2140)
- 🔨 Bump github.com/docker/docker from 26.0.0+incompatible to 26.0.2+incompatible (#2131)
- 🔨 Bump github.com/tektoncd/pipeline from 0.58.0 to 0.59.0 (#2130)
- 🔨 Bump golang.org/x/net from 0.22.0 to 0.23.0 (#2120)
- 🔨 Bump github.com/sigstore/cosign/v2 from 2.2.3 to 2.2.4 (#2111)
- 🔨 Bump golang.org/x/sync from 0.6.0 to 0.7.0 (#2103)
- 🔨 Bump golang.org/x/mod from 0.16.0 to 0.17.0 (#2102)
- 🔨 Bump github.com/manifestival/client-go-client from 0.5.0 to 0.6.0 (#2080)
- 🔨 Bump github.com/tektoncd/pipeline from 0.57.0 to 0.58.0 (#2079)
- 🔨 Update clusterserviceversion template on bump components (#2076)
- 🔨 Bump github.com/docker/docker from 24.0.7+incompatible to 24.0.9+incompatible (#2058)
- 🔨 Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 (#2052)
- 🔨 Revert "Fix Conflict between Results PreReconciler and Reconciler" (#2043)
- 🔨 Bump github.com/go-jose/go-jose/v3 from 3.0.1 to 3.0.3 (#2041)
- 🔨 Bump gopkg.in/go-jose/go-jose.v2 from 2.6.1 to 2.6.3 (#2040)
- 🔨 Bump golang.org/x/mod from 0.15.0 to 0.16.0 (#2036)
- 🔨 Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#2035)
- 🔨 Bump go.uber.org/zap from 1.26.0 to 1.27.0 (#2028)
Docs
Thanks
Thanks to these contributors who contributed to v0.71.0!
- ❤️ @Aneesh-M-Bhat
- ❤️ @MMartyn
- ❤️ @PuneetPunamiya
- ❤️ @anithapriyanatarajan
- ❤️ @arnoldmashava
- ❤️ @dependabot[bot]
- ❤️ @jimmyjones2
- ❤️ @jkandasa
- ❤️ @jkhelil
- ❤️ @khrm
- ❤️ @l-qing
- ❤️ @piyush-garg
- ❤️ @pratap0007
- ❤️ @tekton-robot
- ❤️ @vdemeester
Extra shout-out for awesome release notes:
- 😍 @Aneesh-M-Bhat
- 😍 @MMartyn
- 😍 @PuneetPunamiya
- 😍 @jimmyjones2
- 😍 @jkandasa
- 😍 @jkhelil
- 😍 @khrm
- 😍 @l-qing
- 😍 @piyush-garg
- 😍 @pratap0007
- 😍 @tekton-robot