Tekton Bundle: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 1: Line 1:
=Internal=
=Internal=
* [[Tekton_Concepts#Bundles|Tekton Concepts]]
* [[Tekton_Concepts#Bundles|Tekton Concepts]]


=Overview=
=Overview=

Revision as of 03:06, 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: