Skip to content

Commit

Permalink
Update docs, scripts and Makefile
Browse files Browse the repository at this point in the history
This is needed in order to reflect the new tekton release version.

Signed-off-by: Enrique Encalada <[email protected]>
  • Loading branch information
xiujuan95 authored and qu1queee committed Jan 22, 2021
1 parent 87c92df commit d9c0f32
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OPERATOR_SDK_EXTRA_ARGS ?= --debug
TEST_NAMESPACE ?= default

# CI: tekton pipelines operator version
TEKTON_VERSION ?= v0.18.1
TEKTON_VERSION ?= v0.20.1
# CI: operator-sdk version
SDK_VERSION ?= v0.17.0

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ as [Kaniko](https://github.com/GoogleContainerTools/kaniko),
| Dependency | Supported versions |
| ----------------------------------------- | -------------------------------------- |
| [Kubernetes](https://kubernetes.io/) | v1.15.\*, v1.16.\*, v1.17.\*, v1.18.\* |
| [Tekton](https://cloud.google.com/tekton) | v0.18.1 |
| [Tekton](https://cloud.google.com/tekton) | v0.20.1 |

## Build Strategies

Expand Down Expand Up @@ -80,7 +80,7 @@ $ git clone https://github.com/shipwright-io/build.git
$ cd build/
```

* Install [Tekton](https://cloud.google.com/tekton) by running [hack/install-tekton.sh](hack/install-tekton.sh), it installs v0.18.1.
* Install [Tekton](https://cloud.google.com/tekton) by running [hack/install-tekton.sh](hack/install-tekton.sh), it installs v0.20.1.

```bash
$ hack/install-tekton.sh
Expand Down
2 changes: 1 addition & 1 deletion docs/proposals/buildstrategy-annotation-propagation.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Based on that naming, the other three prefixes reserved by our controllers are:

When generating a Tekton `TaskRun`, the idea is to look at the annotations of the `BuildStrategy` or `ClusterBuildStrategy` and copy all annotations over to the `TaskRun`, except those that use one of our own prefixes because we today have no feature anyway where we look for one of our annotations on a `TaskRun` or `Pod`, and except the `kubectl.kubernetes.io/last-applied-configuration` annotation.

Tekton automatically copies all `TaskRun` annotations to the `Pod`, see [pod.go](https://github.com/tektoncd/pipeline/blob/v0.18.1/pkg/pod/pod.go#L256).
Tekton automatically copies all `TaskRun` annotations to the `Pod`, see [pod.go](https://github.com/tektoncd/pipeline/blob/v0.20.1/pkg/pod/pod.go#L257).

For example, this metadata of a cluster build strategy:

Expand Down
2 changes: 1 addition & 1 deletion hack/install-tekton.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

set -eu

TEKTON_VERSION="${TEKTON_VERSION:-v0.18.1}"
TEKTON_VERSION="${TEKTON_VERSION:-v0.20.1}"

TEKTON_HOST="github.com"
TEKTON_HOST_PATH="tektoncd/pipeline/releases/download"
Expand Down

0 comments on commit d9c0f32

Please sign in to comment.