renovate/lib/modules/manager/tekton/readme.md

82 lines
3.8 KiB
Markdown

[Tekton](https://tekton.dev/) is an open-source cloud-native Continuous Integration and Continuous Delivery/Deployment solution.
Tekton uses Tasks to capture specific commands to be executed, and Pipelines to combine different Tasks, to achieve a goal, like building a container image.
Tasks and Pipelines are defined as Kubernetes custom resources.
The [Tekton documentation](https://tekton.dev/docs/) is a great resource to learn more about the overall concepts and how to start using it.
### Distributing Tasks and Pipeline definitions
There are different ways to distribute Task and Pipeline definitions.
They can be created directly as a Kubernetes resource with standard tools like `kubectl`.
Tasks and Pipeline definitions can also live outside the Kubernetes cluster and get fetched by Tekton when needed, this approach relies on Tekton resource references rather than the resource definition.
The `tekton` manager focuses on providing updates to Tekton resource references.
Right now, Renovate's Tekton manager supports references that are [Bundles](https://tekton.dev/docs/pipelines/tekton-bundle-contracts/) and [PipelinesAsCode](https://pipelinesascode.com) with [remote HTTP URL resolver](https://pipelinesascode.com/docs/guide/resolver/#remote-http-url).
Read the [Tekton Pipeline remote resolution docs](https://tekton.dev/docs/pipelines/resolution/) for the different kinds of Tekton references and their corresponding resolvers.
### Using a PipelinesAsCode remote URL reference
By specifying the annotation with a remote task or a remote pipeline based on the recommended way using [git based versioning](https://github.com/tektoncd/community/blob/main/teps/0115-tekton-catalog-git-based-versioning/index.md). How this can be used can be seen in the example below.
```yaml title="How an annotation could look like in an pipeline-run.yaml"
apiVersion: tekton.dev/v1
kind: PipelineRun
metadata:
name: main
annotations:
pipelinesascode.tekton.dev/task: 'https://github.com/foo/bar/raw/v0.0.1/task/my-task/my-task.yaml'
pipelinesascode.tekton.dev/pipeline: 'https://github.com/foo/bar/raw/v0.0.1/pipeline/my-pipeline/my-pipeline.yaml'
```
Supported URLs:
1. <https://github.com/foo/bar/raw/v0.0.1/tasks/task/task.yaml><
2. <https://raw.githubusercontent.com/foo/bar/v0.0.1/tasks/task/task.yaml>
3. <https://github.com/foo/bar/releases/download/v0.0.1/create-git-tag-task.yaml>
### Using a Tekton Bundle reference
There are three ways to use a Tekton Bundle reference:
1. Via the [Tekton Bundles Resolver](https://tekton.dev/docs/pipelines/bundle-resolver/)
1. Via the [`tektoncd/resolution` project](https://github.com/tektoncd/resolution)
1. Via the `taskRun.spec.taskRef.bundle` and the `pipelineRun.spec.pipelineRef.bundle` attributes
Renovate's Tekton manager supports all the methods listed above.
### Configuring images in Tekton Tasks
You can configure the container images that Tekton uses when it runs tasks.
You may use these attributes to configure images in a:
1. Task step
1. Task stepTemplate
1. Task sidecar
You can define Tekton Tasks within these Tekton resources:
1. Task
1. TaskRun
1. Pipeline
1. PipelineRun
Renovate's Tekton manager supports all the image attributes for the Tekton resources mentioned above.
### Set your own `fileMatch` pattern
The `tekton` manager does not have a default `fileMatch` pattern.
This means it won't match any files until you set a `fileMatch` pattern.
This is to avoid problems with unrelated YAML files since there is no well-established file name pattern for [Tekton](https://tekton.dev/) resources.
As an example, the following config matches all the YAML files in a repository:
```json
{
"tekton": {
"fileMatch": ["\\.yaml$", "\\.yml$"]
}
}
```
See our [versioning](../../versioning/index.md) documentation for details on the existing versioning rules and possible alterations.