This guide describes the differences betweenDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/tektoncd/pipeline/llms.txt
Use this file to discover all available pages before exploring further.
v1beta1 Tekton entities and their v1 counterparts, including changed fields and deprecated features.
Changes to Fields
In Tektonv1, the following fields have been changed:
| Old Field | Replacement |
|---|---|
pipelineRun.spec.Timeout | pipelineRun.spec.timeouts.pipeline |
pipelineRun.spec.taskRunSpecs.taskServiceAccountName | pipelineRun.spec.taskRunSpecs.serviceAccountName |
pipelineRun.spec.taskRunSpecs.taskPodTemplate | pipelineRun.spec.taskRunSpecs.podTemplate |
taskRun.status.taskResults | taskRun.status.results |
pipelineRun.status.pipelineResults | pipelineRun.status.results |
taskRun.spec.taskRef.bundle | taskRun.spec.taskRef.resolver |
pipelineRun.spec.pipelineRef.bundle | pipelineRun.spec.pipelineRef.resolver |
task.spec.resources | Removed from Task |
taskrun.spec.resources | Removed from TaskRun |
taskRun.status.cloudEvents | Removed from TaskRun |
taskRun.status.resourcesResult | Removed from TaskRun |
pipeline.spec.resources | Removed from Pipeline |
pipelineRun.spec.resources | Removed from PipelineRun |
pipelineRun.spec.serviceAccountName | pipelineRun.spec.taskRunTemplate.serviceAccountName |
pipelineRun.spec.podTemplate | pipelineRun.spec.taskRunTemplate.podTemplate |
task.spec.steps[].resources | task.spec.steps[].computeResources |
task.spec.stepTemplate.resources | task.spec.stepTemplate.computeResources |
task.spec.sidecars[].resources | task.spec.sidecars[].computeResources |
taskRun.spec.sidecarOverrides | taskRun.spec.sidecarSpecs |
taskRun.spec.stepOverrides | taskRun.spec.stepSpecs |
taskRun.spec.sidecarSpecs[].resources | taskRun.spec.sidecarSpecs[].computeResources |
taskRun.spec.stepSpecs[].resources | taskRun.spec.stepSpecs[].computeResources |
Replacing Bundle References with Bundle Resolver
The bundle resolver in remote resolution should be used instead oftaskRun.spec.taskRef.bundle and pipelineRun.spec.pipelineRef.bundle.
The enable-bundles-resolver feature flag must be enabled to use this feature.
- v1beta1
- v1
Replacing ClusterTask with Remote Resolution
Theenable-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.
- v1beta1
- v1
Removing PipelineResources
Please useTasks 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.
- v1beta1
- v1