Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions docs/pipelineruns.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,18 @@ Creation of a `PipelineRun` will trigger the creation of

---

- [Syntax](#syntax)
- [Resources](#resources)
- [Params](#params)
- [Service account](#service-account)
- [Service accounts](#service-accounts)
- [Pod Template](#pod-template)
- [PipelineRuns](#pipelineruns)
- [Syntax](#syntax)
- [Specifying a pipeline](#specifying-a-pipeline)
- [Resources](#resources)
- [Params](#params)
- [Service Account](#service-account)
- [Service Accounts](#service-accounts)
- [Pod Template](#pod-template)
- [PersistentVolumeClaims](#persistentvolumeclaims)
- [Workspaces](#workspaces)
- [Cancelling a PipelineRun](#cancelling-a-pipelinerun)
- [Examples](https://github.com/tektoncd/pipeline/tree/master/examples/v1beta1/pipelineruns)
- [Logs](logs.md)
- [LimitRanges](#limitranges)
- [Cancelling a PipelineRun](#cancelling-a-pipelinerun)
- [LimitRanges](#limitranges)

## Syntax

Expand Down Expand Up @@ -374,7 +375,7 @@ workspaces:
secretName: my-secret
```

_For a complete example see [workspace.yaml](../examples/v1beta1/pipelineruns/workspace.yaml)._
_For a complete example see [workspaces.yaml](../examples/v1beta1/pipelineruns/workspaces.yaml)._

## Cancelling a PipelineRun

Expand Down
32 changes: 18 additions & 14 deletions docs/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,23 @@ This document defines `Pipelines` and their capabilities.

---

- [Syntax](#syntax)
- [Declared resources](#declared-resources)
- [Workspaces](#declared-workspaces)
- [Parameters](#parameters)
- [Pipeline Tasks](#pipeline-tasks)
- [From](#from)
- [RunAfter](#runAfter)
- [Retries](#retries)
- [Conditions](#conditions)
- [Timeout](#timeout)
- [Results](#results)
- [Ordering](#ordering)
- [Examples](#examples)
- [Pipelines](#pipelines)
- [Syntax](#syntax)
- [Description](#description)
- [Declared resources](#declared-resources)
- [Declared Workspaces](#declared-workspaces)
- [Workspaces Don't Imply Task Ordering (Yet)](#workspaces-dont-imply-task-ordering-yet)
- [Parameters](#parameters)
- [Usage](#usage)
- [Pipeline Tasks](#pipeline-tasks)
- [from](#from)
- [runAfter](#runafter)
- [retries](#retries)
- [conditions](#conditions)
- [Timeout](#timeout)
- [Results](#results)
- [Ordering](#ordering)
- [Examples](#examples)

## Syntax

Expand Down Expand Up @@ -448,7 +452,7 @@ params:

In this example the previous pipeline task has name "previous-task-name" and its result is declared in the Task definition as having name "bar-result".

For a complete example demonstrating Task Results in a Pipeline see the [pipelinerun example](../examples/pipelineruns/task_results_example.yaml).
For a complete example demonstrating Task Results in a Pipeline see the [pipelinerun example](../examples/v1beta1/pipelineruns/task_results_example.yaml).

### Ordering

Expand Down
34 changes: 19 additions & 15 deletions docs/taskruns.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,26 @@ A `TaskRun` runs until all `steps` have completed or until a failure occurs.

---

- [Syntax](#syntax)
- [Specifying a `Task`](#specifying-a-task)
- [Parameters](#parameters)
- [Providing resources](#providing-resources)
- [Overriding where resources are copied from](#overriding-where-resources-are-copied-from)
- [Service Account](#service-account)
- [TaskRuns](#taskruns)
- [Syntax](#syntax)
- [Specifying a task](#specifying-a-task)
- [Parameters](#parameters)
- [Providing resources](#providing-resources)
- [Configuring Default Timeout](#configuring-default-timeout)
- [Service Account](#service-account)
- [Pod Template](#pod-template)
- [Workspaces](#workspaces)
- [Status](#status)
- [Steps](#steps)
- [Task Results](#results)
- [Cancelling a TaskRun](#cancelling-a-taskrun)
- [Examples](#examples)
- [Sidecars](#sidecars)
- [Logs](logs.md)
- [LimitRanges](#limitranges)
- [Status](#status)
- [Steps](#steps)
- [Results](#results)
- [Cancelling a TaskRun](#cancelling-a-taskrun)
- [Examples](#examples)
- [Example TaskRun](#example-taskrun)
- [Example with embedded specs](#example-with-embedded-specs)
- [Example Task Reuse](#example-task-reuse)
- [Using a `ServiceAccount`](#using-a-serviceaccount)
- [Sidecars](#sidecars)
- [LimitRanges](#limitranges)

---

Expand Down Expand Up @@ -307,7 +311,7 @@ workspaces:
secretName: my-secret
```

_For a complete example see [workspace.yaml](../examples/taskruns/workspace.yaml)._
_For a complete example see [workspace.yaml](../examples/v1beta1/taskruns/workspace.yaml)._

## Status

Expand Down