Skip to content
Merged
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
22 changes: 14 additions & 8 deletions docs/operator-guide/install-tekton.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To install Tekton resources, follow the steps below:
[Install and set up Tekton Triggers](https://tekton.dev/docs/installation/triggers/) sections for details.
:::

1. Install Tekton pipelines v1.0.0 using the release file:
1. Install Tekton pipelines v1.6.0 using the release file:

:::note
Tekton Pipeline resources are used for managing and running KubeRocketCI Tekton Pipelines and Tasks.
Expand All @@ -40,34 +40,40 @@ To install Tekton resources, follow the steps below:
:::

```bash
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v1.0.0/release.yaml
kubectl apply -f https://storage.googleapis.com/tekton-releases/pipeline/previous/v1.6.0/release.yaml
```

2. Install Tekton Triggers v0.32.0 using the release file:
2. Install Tekton Triggers v0.34.0 using the release file:

:::note
Tekton Trigger resources are used for managing and running KubeRocketCI Tekton EventListeners, Triggers, TriggerBindings and TriggerTemplates.
Please refer to the [KubeRocketCI Tekton Triggers](https://github.com/epam/edp-tekton/tree/master/charts/pipelines-library/templates/triggers) page for details.
:::

```bash
kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/previous/v0.32.0/release.yaml
kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/previous/v0.34.0/release.yaml
```

3. Install Tekton Interceptors v0.32.0 using the release file:
3. Install Tekton Interceptors v0.34.0 using the release file:

:::note
The Platform uses GitLab, GitHub and Cel ClusterInterceptors for processing requests from webhooks.
:::

```bash
kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/previous/v0.32.0/interceptors.yaml
kubectl apply -f https://storage.googleapis.com/tekton-releases/triggers/previous/v0.34.0/interceptors.yaml
```

4. Install Tekton Chains v0.25.0 using the release file:
4. Install Tekton Chains v0.26.0 using the release file:

```bash
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.25.0/release.yaml
kubectl apply -f https://storage.googleapis.com/tekton-releases/chains/previous/v0.26.0/release.yaml
```

5. Install Tekton Results v0.17.2 using the release file:

```bash
kubectl apply -f https://storage.googleapis.com/tekton-releases/results/previous/v0.17.2/release.yaml
```

## Installation on OKD cluster
Expand Down
Loading