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

Introduce workspaces to Pipelines. #1866

Merged
merged 1 commit into from Jan 22, 2020
Merged

Introduce workspaces to Pipelines. #1866

merged 1 commit into from Jan 22, 2020

Commits on Jan 21, 2020

  1. This commit introduces workspaces for Pipelines.

    A workspace can be threaded through the tasks of a Pipeline, allowing easier
    reuse and customisation of shared storage between tasks.
    
    Workspace types have been added to Pipeline structs:
    
    * A Pipeline declares a list of workspace names that it requires be provided
    by a PipelineRun.
    * A PipelineTask declares a mapping from a Pipeline's workspace name to a
    workspace name declared by the Task it references (or embeds).
    * A PipelineRun declares the concrete workspace implementations - whether
    they be a PVC, emptyDir, configMap or secret - and passes those in with
    the name declared by the Pipeline it references (or embeds).
    
    An example PipelineRun has been added to demonstrate usage of the
    workspaces in pipelines.
    
    Outstanding TODOs:
    
    * Add tests
    Scott committed Jan 21, 2020
    Configuration menu
    Copy the full SHA
    0d07da4 View commit details
    Browse the repository at this point in the history