docs/README.md
Tekton Pipelines is a Kubernetes extension that installs and runs on your Kubernetes cluster. It defines a set of Kubernetes Custom Resources that act as building blocks from which you can assemble CI/CD pipelines. Once installed, Tekton Pipelines becomes available via the Kubernetes CLI (kubectl) and via API calls, just like pods and other resources. Tekton is open-source and part of the CD Foundation, a Linux Foundation project.
Tekton Pipelines defines the following entities:
<table> <tr> <th>Entity</th> <th>Description</th> </tr> <tr> <td><code>Task</code></td> <td>Defines a series of steps which launch specific build or delivery tools that ingest specific inputs and produce specific outputs.</td> </tr> <tr> <td><code>TaskRun</code></td> <td>Instantiates a <code>Task</code> for execution with specific inputs, outputs, and execution parameters. Can be invoked on its own or as part of a <code>Pipeline</code>.</td> </tr> <tr> <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>PipelineRun</code></td> <td>Instantiates a <code>Pipeline</code> for execution with specific inputs, outputs, and execution parameters.</td> </tr> <tr> <td><code>PipelineResource (Deprecated)</code></td> <td>Defines locations for inputs ingested and outputs produced by the steps in <code>Tasks</code>.</td> </tr> <tr> <td><Code>Run</code> (alpha)</td> <td>Instantiates a Custom Task for execution when specific inputs.</td> </tr> </table>To get started, complete the Tekton Pipelines Tutorial and go through our examples.
See the following topics to learn how to use Tekton Pipelines in your project:
If you'd like to contribute to the Tekton Pipelines project, see the Tekton Pipeline Contributor's Guide.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License.