Skip to main content
This guide describes the differences between v1beta1 Tekton entities and their v1 counterparts, including changed fields and deprecated features.

Changes to Fields

In Tekton v1, the following fields have been changed:

Replacing Bundle References with Bundle Resolver

taskRef.bundle and pipelineRef.bundle have been removed from v1. Use the bundle resolver instead.
The bundle resolver in remote resolution should be used instead of taskRun.spec.taskRef.bundle and pipelineRun.spec.pipelineRef.bundle. The enable-bundles-resolver feature flag must be enabled to use this feature.

Replacing ClusterTask with Remote Resolution

ClusterTask is deprecated. Use the cluster resolver instead.
The enable-cluster-resolver feature flag must be enabled to use this feature. The cluster resolver allows Pipelines, PipelineRuns, and TaskRuns to refer to Pipelines and Tasks defined in other namespaces in the cluster.
For more information, see TEP-0060: Remote Resource Resolution.

Removing PipelineResources

PipelineResources and the resources fields of Task, TaskRun, Pipeline, and PipelineRun have been removed.
Please use Tasks instead. For more information, see Replacing PipelineResources.

Using TaskRunTemplate in PipelineRun

ServiceAccountName and PodTemplate are moved to TaskRunTemplate so that users can specify common configuration that will apply to all TaskRuns.
For more information, see TEP-0119: Add taskRunTemplate in PipelineRun.