Tekton Bundle: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 12: Line 12:
     bundle: docker.io/myrepo/mybundle[:''tag'']
     bundle: docker.io/myrepo/mybundle[:''tag'']
</font>
</font>
or in declaration of tasks in pipelines.
or in [[Tekton_Pipeline#pipeline_task_bundle|declaration of tasks in pipelines]].
 


<font color=darkkhaki>TO PROCESS:  
<font color=darkkhaki>TO PROCESS:  

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: