Skip to content

Commit 2d617b2

Browse files
Merge pull request #543 from qu1queee/qu1queee/bump_tekton_to_himalayan
Bump Tekton to Himalayan Haro release
2 parents 750087f + d9c0f32 commit 2d617b2

File tree

753 files changed

+36981
-30036
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

753 files changed

+36981
-30036
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ OPERATOR_SDK_EXTRA_ARGS ?= --debug
2828
TEST_NAMESPACE ?= default
2929

3030
# CI: tekton pipelines operator version
31-
TEKTON_VERSION ?= v0.18.1
31+
TEKTON_VERSION ?= v0.20.1
3232
# CI: operator-sdk version
3333
SDK_VERSION ?= v0.17.0
3434

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ as [Kaniko](https://github.com/GoogleContainerTools/kaniko),
2929
| Dependency | Supported versions |
3030
| ----------------------------------------- | -------------------------------------- |
3131
| [Kubernetes](https://kubernetes.io/) | v1.15.\*, v1.16.\*, v1.17.\*, v1.18.\* |
32-
| [Tekton](https://cloud.google.com/tekton) | v0.18.1 |
32+
| [Tekton](https://cloud.google.com/tekton) | v0.20.1 |
3333

3434
## Build Strategies
3535

@@ -80,7 +80,7 @@ $ git clone https://github.com/shipwright-io/build.git
8080
$ cd build/
8181
```
8282

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

8585
```bash
8686
$ hack/install-tekton.sh

docs/proposals/buildstrategy-annotation-propagation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Based on that naming, the other three prefixes reserved by our controllers are:
8686

8787
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.
8888

89-
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).
89+
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).
9090

9191
For example, this metadata of a cluster build strategy:
9292

go.mod

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,31 @@ module github.com/shipwright-io/build
33
go 1.14
44

55
require (
6-
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32 // indirect
76
github.com/go-git/go-git/v5 v5.2.0
87
github.com/go-logr/logr v0.2.0
98
github.com/go-openapi/spec v0.19.6
109
github.com/onsi/ginkgo v1.12.1
1110
github.com/onsi/gomega v1.10.1
1211
github.com/operator-framework/operator-sdk v0.18.2
1312
github.com/pkg/errors v0.9.1
14-
github.com/prometheus/client_golang v1.6.0
13+
github.com/prometheus/client_golang v1.8.0
1514
github.com/prometheus/client_model v0.2.0
1615
github.com/spf13/pflag v1.0.5
17-
github.com/tektoncd/pipeline v0.18.1
18-
k8s.io/api v0.18.10
16+
github.com/tektoncd/pipeline v0.20.1
17+
k8s.io/api v0.18.12
1918
k8s.io/apimachinery v0.19.0
2019
k8s.io/client-go v12.0.0+incompatible
21-
k8s.io/code-generator v0.18.10
20+
k8s.io/code-generator v0.18.12
2221
k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6
2322
k8s.io/kubectl v0.18.10
2423
k8s.io/utils v0.0.0-20200603063816-c1c6865ac451
25-
knative.dev/pkg v0.0.0-20201026165741-2f75016c1368
24+
knative.dev/pkg v0.0.0-20210107022335-51c72e24c179
2625
sigs.k8s.io/controller-runtime v0.6.1
2726
sigs.k8s.io/yaml v1.2.0
2827
)
2928

3029
replace (
31-
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible // Required by OLM
30+
github.com/Azure/go-autorest => github.com/Azure/go-autorest v14.2.0+incompatible // Required by OLM
3231
// github.com/operator-framework/operator-registry requires Sirupsen/[email protected]
3332
github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.7.0
3433
// Pin docker/* to versions used to spinning up local test registries by operator-sdk
@@ -40,5 +39,4 @@ replace (
4039
k8s.io/code-generator => k8s.io/code-generator v0.18.10
4140
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29 // resolve `case-insensitive import collision` for gnostic/openapiv2 package
4241
sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.6.1
43-
4442
)

go.sum

Lines changed: 171 additions & 615 deletions
Large diffs are not rendered by default.

hack/install-tekton.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
set -eu
1212

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

1515
TEKTON_HOST="github.com"
1616
TEKTON_HOST_PATH="tektoncd/pipeline/releases/download"

vendor/github.com/Azure/go-autorest/.gitignore

Lines changed: 32 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)