Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to tekton v0.14.2 #312

Merged
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ OPERATOR_SDK_EXTRA_ARGS ?= --debug
TEST_NAMESPACE ?= default

# CI: tekton pipelines operator version
TEKTON_VERSION ?= v0.11.3
TEKTON_VERSION ?= v0.14.2
# 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 @@ -19,7 +19,7 @@ An API to build container-images on Kubernetes using popular strategies and tool
| Dependency | Supported versions |
| ----------------------------------------- | ---------------------------- |
| [Kubernetes](https://kubernetes.io/) | v1.15.\*, v1.16.\*, v1.17.\* |
| [Tekton](https://cloud.google.com/tekton) | v0.11.\* |
| [Tekton](https://cloud.google.com/tekton) | v0.14.2 |

## How

Expand Down Expand Up @@ -59,7 +59,7 @@ Examples of `Build` resource using the example strategies shipped with this oper
## Try it!

* Get a [Kubernetes](https://kubernetes.io/) cluster and [`kubectl`](https://kubernetes.io/docs/reference/kubectl/overview/) set up to connect to your cluster.
* Install [Tekton](https://cloud.google.com/tekton) by running [install-tekton.sh](hack/install-tekton.sh), it installs v0.11.3.
* Install [Tekton](https://cloud.google.com/tekton) by running [install-tekton.sh](hack/install-tekton.sh), it installs v0.14.2.
* Install [operator-sdk][operatorsdk] by running [install-operator-sdk.sh](hack/install-operator-sdk.sh), it installs v0.17.0.
* Create a namespace called **build-examples** by running `kubectl create namespace build-examples`.
* Execute `make local` to register [well-known build strategies](samples/buildstrategy) including **Kaniko** and start the operator locally.
Expand Down
17 changes: 7 additions & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,23 @@ go 1.13

require (
github.com/go-logr/logr v0.1.0
github.com/go-openapi/spec v0.19.4
github.com/gobuffalo/envy v1.7.1 // indirect
github.com/golang/protobuf v1.4.0 // indirect
github.com/go-openapi/spec v0.19.6
github.com/onsi/ginkgo v1.12.0
github.com/onsi/gomega v1.9.0
github.com/operator-framework/operator-sdk v0.17.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.5.1
github.com/spf13/pflag v1.0.5
github.com/tektoncd/pipeline v0.11.3
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect
github.com/tektoncd/pipeline v0.14.2
golang.org/x/sys v0.0.0-20200413165638-669c56c373c4 // indirect
k8s.io/api v0.17.4
k8s.io/apimachinery v0.17.4
k8s.io/api v0.17.6
k8s.io/apimachinery v0.17.6
k8s.io/client-go v12.0.0+incompatible
k8s.io/kube-openapi v0.0.0-20191107075043-30be4d16710a
k8s.io/kube-openapi v0.0.0-20200410145947-bcb3869e6f29
k8s.io/kubectl v0.17.4
knative.dev/pkg v0.0.0-20200207155214-fef852970f43
knative.dev/pkg v0.0.0-20200528142800-1c6815d7e4c9
sigs.k8s.io/controller-runtime v0.5.2
sigs.k8s.io/yaml v1.1.0
sigs.k8s.io/yaml v1.2.0
)

replace (
Expand Down
491 changes: 468 additions & 23 deletions go.sum

Large diffs are not rendered by default.

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

set -eu

TEKTON_VERSION="${TEKTON_VERSION:-v0.11.3}"
TEKTON_VERSION="${TEKTON_VERSION:-v0.14.2}"

TEKTON_HOST="github.com"
TEKTON_HOST_PATH="tektoncd/pipeline/releases/download"
Expand Down
12 changes: 0 additions & 12 deletions vendor/cloud.google.com/go/compute/metadata/.repo-metadata.json

This file was deleted.

52 changes: 22 additions & 30 deletions vendor/cloud.google.com/go/compute/metadata/metadata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion vendor/github.com/Azure/go-autorest/autorest/adal/token.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 16 additions & 15 deletions vendor/github.com/Azure/go-autorest/autorest/authorization.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion vendor/github.com/Azure/go-autorest/autorest/azure/async.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions vendor/github.com/Azure/go-autorest/autorest/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/Azure/go-autorest/autorest/go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/github.com/Azure/go-autorest/autorest/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 14 additions & 2 deletions vendor/github.com/Azure/go-autorest/autorest/sender.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading