Skip to content

Releases: tektoncd/operator

Tekton Operator release v0.73.0 "Spotted Owlet" LTS

01 Oct 12:27
Compare
Choose a tag to compare

🎉 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!

Extra shout-out for awesome release notes:

tekton-operator-0.73.0

01 Oct 14:42
Compare
Choose a tag to compare

A Helm chart to deploy the Tekton Operator and its CRDs

Tekton Operator release v0.72.0 "Masked Finfoot"

11 Jul 10:49
Compare
Choose a tag to compare

🎉 v0.72.0 🎉

-Docs @ v0.72.0
-Examples @ v0.72.0

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.72.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.72.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.72.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.61.1
Dashboard tektoncd v0.48.0
Triggers tektoncd v0.28.0
Hub tektoncd v1.17.0
Chains tektoncd v0.21.1
Results tektoncd v0.11.0
Pipeline-as-code openshift-pipelines v0.27.2
Manual Approval Gate openshift-pipelines v0.2.2

Features

  • ✨ Add webhookconfiguration options to tektonConfig additional options (#2129)

  • ✨ Add versioned task for resolver task (#2227)

  • ✨ Upgrade ConsoleYAMLSample apiVersion to Pipelines v1 (#2170)

  • ✨ Update triggers default configmap for runAsUser and runAsGroup to handle restricted securityContext for Triggers (#2125)

Fixes

  • 🐛 [main] update default logger options for production environment (#2241)

default logger options updated to production mode. Now the default log level is info and fixed the logger overrides names

  • 🐛 Update helm charts with manual approvalgate CR (#2230)

Update helm charts with manual approvalgate CR

  • 🐛 Fix validation for additionalPacController settings (#2208)

Fix validation for additionalPacController settings

  • 🐛 Support for disconnected environments for resolverTasks (#2174)

Added support for using tasks supported by resolverTasks in tektonconfig to be used in disconnected environments as well.

  • 🐛 Fix cvp issue by removing internal registry from relatedImages (#2204)

  • 🐛 Fix PAC config not handling hub catalogs (#2201)

  • 🐛 ArtifactsPipelineRunEnableDeepInspection making this field to accept both bool and string (#2179)

Misc

  • 🔨 Bump google.golang.org/grpc from 1.64.0 to 1.64.1 (#2243)
  • 🔨 Bump golang.org/x/mod from 0.18.0 to 0.19.0 (#2238)
  • 🔨 Bump github.com/tektoncd/triggers from 0.27.0 to 0.28.0 (#2237)
  • 🔨 Bump github.com/openshift-pipelines/pipelines-as-code from 0.27.1 to 0.27.2 (#2236)
  • 🔨 Bump github.com/tektoncd/pipeline from 0.60.2 to 0.61.0 (#2225)
  • 🔨 Bump github.com/hashicorp/go-retryablehttp from 0.7.5 to 0.7.7 (#2221)
  • 🔨 Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#2214)
  • 🔨 Bump github.com/openshift-pipelines/pipelines-as-code from 0.27.0 to 0.27.1 (#2199)
  • 🔨 Bump github.com/tektoncd/pipeline from 0.60.1 to 0.60.2 (#2198)
  • 🔨 Bump golang.org/x/mod from 0.17.0 to 0.18.0 (#2197)
  • 🔨 Bump github.com/spf13/viper from 1.18.2 to 1.19.0 (#2186)
  • 🔨 Bump github.com/tektoncd/pipeline from 0.60.0 to 0.60.1 (#2185)
  • 🔨 Bump github.com/tektoncd/pipeline from 0.59.0 to 0.60.0 (#2175)
  • 🔨 Bump charts version and image sha (#2246)
  • 🔨 Fix devel version replacement (#2245)
  • 🔨 Bump k8s deps to v0.29 (#2240)
  • 🔨 Update ManualApprovalGate.md (#2220)
  • 🔨 skip ManualApprovalgate tests on s390x/ppc64le arch (#2219)
  • 🔨 bump go dependencies (#2217)
  • 🔨 Update task-git version to 0.3.1 (#2232)
  • 🔨 Update task versions for s2i and tkn (#2215)
  • 🔨 Add missing manualapprovalgate CR (#2209)
  • 🔨 Fix codeql workflow (#2166)
  • 🔨 Add support for using nightly release (#2161)
  • 🔨 bump go version to 1.21 in GH actions (#2159)
  • 🔨 Remove unused variable tknVersion (#2200)
  • 🔨 remove unsupported versions from bump payload (#2190)
  • 🔨 update relesase details as table (#2189)
  • 🔨 Bump components version of pipeline and dashboard (#2188)
  • 🔨 Update install.md to reflect the correct installation behaviour (#2187)
  • 🔨 add jkhelil to owners file (#2122)

Docs

  • 📝 docs: remove unsupported feature flag scope-when-expressions-to-task (#2223)

Thanks

Thanks to these contributors who contributed to v0.72.0!

Extra shout-out for awesome release notes:

tekton-operator-0.72.0

11 Jul 10:49
Compare
Choose a tag to compare

A Helm chart to deploy the Tekton Operator and its CRDs

Tekton Operator release v0.71.0 "Siberian Stonechat" LTS

06 Jun 07:23
Compare
Choose a tag to compare

🎉 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!

Extra shout-out for awesome release notes:

tekton-operator-0.71.0

06 Jun 07:24
Compare
Choose a tag to compare

A Helm chart to deploy the Tekton Operator and its CRDs

tekton-operator-0.70.2

29 Apr 02:51
Compare
Choose a tag to compare

A Helm chart to deploy the Tekton Operator and its CRDs

Tekton Operator release v0.70.2 "Spotted Dove LTS"

24 Apr 13:47
Compare
Choose a tag to compare

-Docs @ v0.70.2
-Examples @ v0.70.2

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.70.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.70.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.70.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

What's Changed

  • [release-v0.70.x] Fix Conflict between Results PreReconciler and Reconciler by @tekton-robot in #2016
  • [release-v0.70.x] Fix Results version not reflecting in certain flow by @tekton-robot in #2017
  • [release-v0.70.x] Fix the results reconciler's manifest reference by @tekton-robot in #2018
  • [release-v0.70.x] Fix filter and Transform for TektonResult by @tekton-robot in #2025
  • Revert "Added filesystem-custom-path to allowed x509 fulcio providers" by @PuneetPunamiya in #2030
  • [bot] bump payload versions by @github-actions in #2039
  • [bot] bump payload versions by @github-actions in #2045
  • [v0.70.x] prepare v0.70.1 patch release by @jkandasa in #2046
  • [bot] bump payload versions by @github-actions in #2048
  • [release-v0.70.x] update OpenShift bundle features annotations by @tekton-robot in #2055
  • [v0.70.x] prepare v0.70.2 patch release by @jkandasa in #2056
  • [bot] bump payload versions by @github-actions in #2062
  • [release-0.70.x] Update component versions in the clusterserviceversi… by @vdemeester in #2067
  • [bot] bump payload versions by @github-actions in #2070
  • [bot] bump payload versions by @github-actions in #2074
  • Bump tkn version to v0.35.2 by @piyush-garg in #2077
  • [bot] bump payload versions by @github-actions in #2088
  • [release-v0.70.x] perform manifest transformation earlier by @tekton-robot in #2090
  • [bot] bump payload versions by @github-actions in #2106
  • [release-v0.70.x] apply nodeSelector, tolerations, and priorityClassName into pipelines-console-plugin pod by @tekton-robot in #2110
  • [release-v0.70.x] HPA creation enabled via options by @tekton-robot in #2112
  • [release-v0.70.x] [2100] Reconcile a namespace again with missing rolebinding by @tekton-robot in #2113
  • [release-v0.70.x] Wrap errors with more context while creating resources in the operator by @tekton-robot in #2114
  • [0.70.0] update kubernetes release artifacts bundle by @jkandasa in #2013

Full Changelog: v0.70.0...v0.70.2

Thanks

Thanks to these contributors who contributed to v0.70.2!

Extra shout-out for awesome release notes:

Tekton Operator release v0.70.0 "Spotted Dove LTS"

21 Feb 07:21
Compare
Choose a tag to compare

-Docs @ v0.70.0
-Examples @ v0.70.0

Installation one-liner

kubectl apply -f https://storage.googleapis.com/tekton-releases/operator/previous/v0.70.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.70.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.70.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

  • ✨ Adds recently added pipelinerun and builder artifacts to chains spec (#1999)
Adds support for `artifacts.pipelinerun.enable-deep-inspection` and `builddefinition.buildtype` to Chains spec
  • ✨ Update the volumes of pipelines-scc to add support for CSI. (#1958)
SecurityContextConstraints (SCC) pipelines-scc now supports CSI Volume Types
  • ✨ Add OpenShift PostReconcile Extension for Results Route RBAC (#1947)
system:authenticated user can view route for Tekton Results API endpoints.
  • ✨ [main] add hpa under options and support pod template labels and annotations (#1942)
- Added support to update HorizontalPodAutoscaler via `options`. create HPA options is disabled see https://github.com/tektoncd/operator/issues/2002
- Added support for adding labels and annotations on Deployments and StatefulSets podTemplate via `options`.
  • ✨ Add config leader election configmaps (#1935)
Add config leader election configmaps for operator controller, operator webhook and proxy webhook
  • ✨ [main] manage pipeline console plugin deployment on openshift (#1895)

Fixes

  • 🐛 Add Transformer for Watcher Container Env (#1966)
  • 🐛 [main] include webhook podname in charts deployment (#1936)
  • 🐛 [main] ignore nested struct in AddConfigMapValues transformer (#1848)

Misc

  • 🔨 Bump github.com/tektoncd/triggers from 0.25.3 to 0.26.0 (#1970)
  • 🔨 Bump golang.org/x/mod from 0.14.0 to 0.15.0 (#1969)
  • 🔨 Bump github.com/openshift-pipelines/pipelines-as-code from 0.23.0 to 0.24.0 (#1963)
  • 🔨 Bump github.com/tektoncd/pipeline from 0.55.0 to 0.56.0 (#1945)
  • 🔨 Bump github.com/openshift-pipelines/pipelines-as-code from 0.22.6 to 0.23.0 (#1932)
  • 🔨 Bump golang.org/x/sync from 0.5.0 to 0.6.0 (#1923)
  • 🔨 Bump github.com/openshift-pipelines/pipelines-as-code from 0.22.5 to 0.22.6 (#1922)
  • 🔨 Bump github.com/tektoncd/pipeline from 0.54.0 to 0.55.0 (#1908)
  • 🔨 Bump github.com/spf13/viper from 1.18.1 to 1.18.2 (#1907)
  • 🔨 Bump golang.org/x/crypto from 0.16.0 to 0.17.0 (#1902)
  • 🔨 Bump github.com/openshift-pipelines/pipelines-as-code from 0.22.4 to 0.22.5 (#1901)
  • 🔨 Bump github.com/spf13/viper from 1.17.0 to 1.18.1 (#1892)
  • 🔨 Bump github.com/sigstore/cosign/v2 from 2.1.1 to 2.2.2 (#1891)
  • 🔨 Bump github.com/tektoncd/pipeline from 0.53.2 to 0.54.0 (#1889)

Docs

Thanks

Thanks to these contributors who contributed to v0.70.0!

Extra shout-out for awesome release notes:

tekton-operator-0.70.0

21 Feb 07:22
Compare
Choose a tag to compare

A Helm chart to deploy the Tekton Operator and its CRDs