Skip to content

Commit

Permalink
chore: Bumping kubernetes and other dependencies version
Browse files Browse the repository at this point in the history
This makes possible bump tekton and other dependencies inside core
and other consuming projects.

Removed the dependency for the controller-runtime fork using an interface
to verify implementation
  • Loading branch information
danielfbm committed Aug 12, 2022
1 parent 02cf74e commit a8066bd
Show file tree
Hide file tree
Showing 8 changed files with 397 additions and 375 deletions.
4 changes: 2 additions & 2 deletions examples/sample-e2e/another/another.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
. "github.com/onsi/gomega"
)

var _ = P1Case("another-test").Cluster().WithFunc(func(ctx TestContext) {
var _ = P1Case("another-test").Cluster().DoFunc(func(ctx *TestContext) {
// test case
BeforeEach(func() {
ctx.Debugw("before each in another pkg")
Expand All @@ -45,4 +45,4 @@ var _ = P1Case("another-test").Cluster().WithFunc(func(ctx TestContext) {
Expect(ctx.Config).ToNot(BeNil())
})
})
}).Do()
})
4 changes: 2 additions & 2 deletions examples/sample-e2e/testcase_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
. "github.com/onsi/gomega"
)

var _ = TestCase(Options{Name: "Testinge2e", Priority: P0, Scope: NamespaceScoped}).WithFunc(func(ctx TestContext) {
var _ = TestCase(Options{Name: "Testinge2e", Priority: P0, Scope: NamespaceScoped}).WithFunc(func(ctx *TestContext) {
BeforeEach(func() {
ctx.Debugw("some debug message")
// fmt.Println("TestCase BeforeEach", ctx.Config)
Expand All @@ -35,7 +35,7 @@ var _ = TestCase(Options{Name: "Testinge2e", Priority: P0, Scope: NamespaceScope
})
}).Do()

var _ = P0Case("aaanother-test").Cluster().WithFunc(func(ctx TestContext) {
var _ = P0Case("aaanother-test").Cluster().WithFunc(func(ctx *TestContext) {
// test case
It("should succeed", func() {
Expect(ctx.Config).ToNot(BeNil())
Expand Down
89 changes: 43 additions & 46 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,33 +10,32 @@ require (
github.com/davecgh/go-spew v1.1.1
github.com/emicklei/go-restful-openapi/v2 v2.3.0
github.com/emicklei/go-restful/v3 v3.8.0
github.com/go-logr/logr v0.4.0
github.com/go-logr/zapr v0.2.0
github.com/go-logr/logr v1.2.2
github.com/go-logr/zapr v1.2.0
github.com/go-openapi/spec v0.20.2 // indirect
github.com/go-resty/resty/v2 v2.6.0
github.com/golang/mock v1.6.0
github.com/google/go-cmp v0.5.7
github.com/googleapis/gnostic v0.5.3 // indirect
github.com/jarcoal/httpmock v1.0.8
github.com/onsi/ginkgo/v2 v2.1.4
github.com/onsi/gomega v1.19.0
github.com/opencontainers/image-spec v1.0.2
github.com/opentracing/opentracing-go v1.1.0
github.com/prometheus/client_golang v1.11.0
github.com/prometheus/client_golang v1.12.1
github.com/uber/jaeger-client-go v2.29.1+incompatible
github.com/uber/jaeger-lib v2.4.1+incompatible
go.uber.org/zap v1.18.1
go.uber.org/zap v1.19.1
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba
k8s.io/api v0.20.7
k8s.io/apimachinery v0.20.7
k8s.io/apiserver v0.20.7
k8s.io/client-go v0.20.7
k8s.io/klog/v2 v2.5.0 // indirect
k8s.io/kube-openapi v0.0.0-20210113233702-8566a335510f // indirect
knative.dev/pkg v0.0.0-20210730172132-bb4aaf09c430
sigs.k8s.io/controller-runtime v0.8.3
sigs.k8s.io/yaml v1.2.0
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8
k8s.io/api v0.23.9
k8s.io/apimachinery v0.23.9
k8s.io/apiserver v0.23.9
k8s.io/client-go v0.23.9
k8s.io/klog/v2 v2.70.2-0.20220707122935-0990e81f1a8f // indirect
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
knative.dev/pkg v0.0.0-20220802185824-a01dfedb0486
sigs.k8s.io/controller-runtime v0.11.2
sigs.k8s.io/yaml v1.3.0
yunion.io/x/log v0.0.0-20201210064738-43181789dc74 // indirect
yunion.io/x/pkg v0.0.0-20210218105412-13a69f60034c
)
Expand All @@ -54,85 +53,83 @@ require golang.org/x/net v0.0.0-20220225172249-27dd8689420f

require (
contrib.go.opencensus.io/exporter/ocagent v0.7.1-0.20200907061046-05415f1de66d // indirect
contrib.go.opencensus.io/exporter/prometheus v0.3.0 // indirect
contrib.go.opencensus.io/exporter/prometheus v0.4.0 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/blang/semver/v4 v4.0.0 // indirect
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96 // indirect
github.com/evanphx/json-patch v4.9.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.5.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
github.com/felixge/httpsnoop v1.0.2 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/go-kit/log v0.1.0 // indirect
github.com/go-logfmt/logfmt v0.5.0 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.19.5 // indirect
github.com/go-openapi/swag v0.19.15 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/uuid v1.2.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/googleapis/gnostic v0.5.5 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/imdario/mergo v0.3.10 // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.11 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kelseyhightower/envconfig v1.4.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.8 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/moby/spdystream v0.2.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.26.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/prometheus/statsd_exporter v0.20.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/prometheus/statsd_exporter v0.21.0 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.opencensus.io v0.23.0 // indirect
go.opentelemetry.io/otel/internal/metric v0.25.0 // indirect
go.opentelemetry.io/otel/metric v0.25.0 // indirect
go.uber.org/atomic v1.8.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/automaxprocs v1.4.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/mod v0.6.0-dev.0.20220106191415-9b9b3d81d5e3 // indirect
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914 // indirect
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.3.7 // indirect
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
google.golang.org/api v0.36.0 // indirect
google.golang.org/api v0.61.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20210416161957-9910b6c460de // indirect
google.golang.org/grpc v1.41.0 // indirect
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
google.golang.org/grpc v1.42.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
k8s.io/apiextensions-apiserver v0.20.7 // indirect
k8s.io/component-base v0.20.7 // indirect
k8s.io/klog v1.0.0 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.0.3 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.23.9 // indirect
k8s.io/component-base v0.23.9 // indirect
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
)

require (
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/openzipkin/zipkin-go v0.4.0 // indirect
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9
)

replace (
github.com/opencontainers/image-spec => github.com/opencontainers/image-spec v1.0.2-0.20210819154149-5ad6f50d6283
go.uber.org/zap => github.com/katanomi/zap v1.18.2 // indirect
sigs.k8s.io/controller-runtime v0.8.3 => github.com/katanomi/controller-runtime v0.8.3-1
)
Loading

0 comments on commit a8066bd

Please sign in to comment.