Tekton PipelineRun

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

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