Tekton PipelineRun
Jump to navigation
Jump to search
External
- https://tekton.dev/docs/pipelines/pipelineruns/
- https://github.com/tektoncd/pipeline/blob/main/docs/pipelineruns.md
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/