You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Its now possible to embed the whole pipeline specification into Pipeline Run
using pipelineSpec, for example:
apiVersion: tekton.dev/v1alpha1
kind: PipelineRun
metadata:
name: pipelinerun-echo-greetings
spec:
pipelineRef:
name: pipeline-echo-greetings
Can be specified as:
apiVersion: tekton.dev/v1alpha1
kind: PipelineRun
metadata:
name: pipelinerun-echo-greetings
spec:
pipelineSpec:
tasks:
- name: echo-good-morning
...
params:
...
0 commit comments