Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding support to enable pipelineSpec #1333

Merged
merged 1 commit into from
Oct 2, 2019

Commits on Oct 2, 2019

  1. Adding support to enable pipelineSpec

    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:
        ...
    pritidesai committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    9591202 View commit details
    Browse the repository at this point in the history