Tekton PipelineRun: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 18: Line 18:
</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]]

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