Tekton PipelineRun: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
=External=
=External=
* https://tekton.dev/docs/pipelines/pipelineruns/
* https://github.com/tektoncd/pipeline/blob/main/docs/pipelineruns.md
* https://github.com/tektoncd/pipeline/blob/main/docs/pipelineruns.md


Line 18: Line 19:
</syntaxhighlight>
</syntaxhighlight>
=Manifest=
=Manifest=
<font color=darkkhaki>
PROCESS: https://tekton.dev/docs/pipelines/pipelineruns/
</font>
=PipelineRun Operations=
=PipelineRun Operations=
* [[Tekton_Operations#List_PipelineRuns|List pipelinerun]]
* [[Tekton_Operations#List_PipelineRuns|List pipelinerun]]
* [[Tekton_Operations#Display_Execution_Log_of_a_PipelineRun|Display execution log of a pipelinerun]]
* [[Tekton_Operations#Display_Execution_Log_of_a_PipelineRun|Display execution log of a pipelinerun]]

Latest revision as of 04:16, 29 April 2022

External

Internal

Overview

A pipeline run (or pipelineRun) instantiates a specific pipeline to execute on a particular set of inputs and produce a particular set of outputs. A pipeline run connects resources with pipelines. A pipeline run can be created via CLI, or by a Tekton components such as Tekton Triggers. The pipeline run is implemented as a Kubernetes custom resource.

Example

apiVersion: tekton.dev/v1beta1
kind: PipelineRun
metadata:
  name: simple-pipeline-run
spec:
  pipelineRef:
    name: simple-pipeline

Manifest

PROCESS: https://tekton.dev/docs/pipelines/pipelineruns/

PipelineRun Operations