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

Bump dependencies in tests of knative-serving and function-controller #9298

Merged
merged 2 commits into from Aug 26, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/knative-serving/values.yaml
Expand Up @@ -66,7 +66,7 @@ global:
path: eu.gcr.io/kyma-project
test_knative_serving_acceptance:
dir:
version: "cdf1bd64"
version: "PR-9298"
ingress:
domainName:

Expand Down
2 changes: 1 addition & 1 deletion resources/serverless/values.yaml
Expand Up @@ -30,7 +30,7 @@ tests:

image:
repository: "eu.gcr.io/kyma-project/function-controller-test"
tag: "cdf1bd64"
tag: "PR-9298"
pullPolicy: IfNotPresent
disableConcurrency: false
restartPolicy: Never
Expand Down
17 changes: 12 additions & 5 deletions tests/function-controller/go.mod
Expand Up @@ -15,7 +15,8 @@ require (
github.com/pkg/errors v0.9.1
github.com/robfig/cron v1.2.0 // indirect
github.com/vrischmann/envconfig v1.2.0
golang.org/x/crypto v0.0.0-20200414173820-0848c9571904 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
golang.org/x/sys v0.0.0-20200413165638-669c56c373c4 // indirect
Expand All @@ -32,8 +33,14 @@ require (
sigs.k8s.io/controller-runtime v0.5.2
)

replace golang.org/x/text => golang.org/x/text v0.3.3
replace (
go.etcd.io/etcd => go.etcd.io/etcd v3.3.25+incompatible

// mismatch among fun-controller, knative enevting and knative serving...
// try to delete it after update of eventing/serving
replace knative.dev/pkg => knative.dev/pkg v0.0.0-20200113182502-b8dc5fbc6d2f
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a

golang.org/x/text => golang.org/x/text v0.3.3

// mismatch among fun-controller, knative enevting and knative serving...
// try to delete it after update of eventing/serving
knative.dev/pkg => knative.dev/pkg v0.0.0-20200113182502-b8dc5fbc6d2f
)