Tekton Bundle: Difference between revisions
Jump to navigation
Jump to search
Line 19: | Line 19: | ||
* <code>[[Tekton_Pipeline#pipeline_task_bundle|bundle]]</code> | * <code>[[Tekton_Pipeline#pipeline_task_bundle|bundle]]</code> | ||
* <code>[[Tekton_TaskRun#bundle|bundle]]</code> | * <code>[[Tekton_TaskRun#bundle|bundle]]</code> | ||
* https://tekton.dev/docs/pipelines/tekton-bundle-contracts/ | |||
</font> | </font> |
Latest revision as of 03:11, 29 April 2022
Internal
Overview
A Tekton bundle is an OCI artifact that contains resources like tasks. The tasks published within a bundle can be referenced within a taskRef
in a task run:
kind: TaskRun spec: taskRef: name: some-task bundle: docker.io/myrepo/mybundle[:tag]
or in declaration of tasks in pipelines.
TO PROCESS:
- https://tekton.dev/docs/pipelines/taskruns/#tekton-bundles
- https://tekton.dev/docs/pipelines/pipelines/#tekton-bundles
bundle
bundle
- https://tekton.dev/docs/pipelines/tekton-bundle-contracts/