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

Various documentation fixes #2633

Merged
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
8 changes: 4 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ Tekton Pipelines defines the following entities:
<td><code>Pipeline</code></td>
<td>Defines a series of <code>Tasks</code> that accomplish a specific build or delivery goal. Can be triggered by an event or invoked from a <code>PipelineRun</code>.</td>
</tr>
<tr>
<td><code>PipelineResource</code></td>
<td>Defines locations for inputs ingested and outputs produced by the steps in <code>Tasks</code>.</td>
</tr>
<tr>
<td><code>PipelineRun</code></td>
<td>Instantiates a <code>Pipeline</code> for execution with specific inputs, outputs, and execution parameters.</td>
</tr>
<tr>
<td><code>PipelineResource</code></td>
<td>Defines locations for inputs ingested and outputs produced by the steps in <code>Tasks</code>.</td>
</tr>
</table>

## Getting started
Expand Down
2 changes: 0 additions & 2 deletions docs/conditions.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ weight: 11

This document defines `Conditions` and their capabilities.

---

- [Syntax](#syntax)
- [Check](#check)
- [Parameters](#parameters)
Expand Down
14 changes: 7 additions & 7 deletions docs/pipelineruns.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,13 +353,6 @@ spec:
status: "PipelineRunCancelled"
```

---

Except as otherwise noted, the content of this page is licensed under the
[Creative Commons Attribution 4.0 License](https://creativecommons.org/licenses/by/4.0/),
and code samples are licensed under the
[Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).

## Specifying task run specs

Specifies a list of `PipelineRunTaskSpec` which contains `TaskServiceAccountName`,`TaskPodTemplate` and `TaskName`. Mapping the specs to the corresponding `Task` based upon the `TaskName` a PipelineTask will run with the configured `TaskServiceAccountName` and `TaskPodTemplate` overwriting the pipeline wide [`ServiceAccountName`](#service-account) and [`podTemplate`](#pod-template) configuration, for example:
Expand All @@ -380,3 +373,10 @@ spec:
```

If used with this `Pipeline`, `build-task` will use the task specific pod template (where `nodeSelector` has `disktype` equal to `ssd`).

---

Except as otherwise noted, the content of this page is licensed under the
[Creative Commons Attribution 4.0 License](https://creativecommons.org/licenses/by/4.0/),
and code samples are licensed under the
[Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).
2 changes: 2 additions & 0 deletions docs/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -937,6 +937,8 @@ More information about Pod and Container Security Contexts can be found via the

The example Task/TaskRun above can be found as a [TaskRun example](../examples/v1beta1/taskruns/run-steps-as-non-root.yaml).

---

Except as otherwise noted, the contents of this page are licensed under the
[Creative Commons Attribution 4.0 License](https://creativecommons.org/licenses/by/4.0/).
Code samples are licensed under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).