Skip to content

Commit 9d105c2

Browse files
Merge pull request #1862 from awgreene/bump-k8s
Bump k8s dependencies to v0.19.3
2 parents 7988750 + 9d2fa34 commit 9d105c2

File tree

1,384 files changed

+84066
-22957
lines changed

Some content is hidden

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

1,384 files changed

+84066
-22957
lines changed

go.mod

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ go 1.13
44

55
require (
66
github.com/blang/semver v3.5.1+incompatible
7+
github.com/bshuster-repo/logrus-logstash-hook v1.0.0 // indirect
78
github.com/coreos/go-semver v0.3.0
89
github.com/davecgh/go-spew v1.1.1
9-
github.com/fsnotify/fsnotify v1.4.7
10+
github.com/fsnotify/fsnotify v1.4.9
1011
github.com/ghodss/yaml v1.0.0
1112
github.com/go-bindata/go-bindata/v3 v3.1.3
12-
github.com/go-logr/logr v0.1.0
13+
github.com/go-logr/logr v0.2.1
14+
github.com/go-logr/zapr v0.2.0 // indirect
1315
github.com/go-openapi/spec v0.19.4
1416
github.com/golang/mock v1.3.1
1517
github.com/google/go-cmp v0.5.0
@@ -27,27 +29,27 @@ require (
2729
github.com/operator-framework/operator-registry v1.13.6
2830
github.com/otiai10/copy v1.2.0
2931
github.com/pkg/errors v0.9.1
30-
github.com/prometheus/client_golang v1.2.1
32+
github.com/prometheus/client_golang v1.7.1
3133
github.com/prometheus/client_model v0.2.0
32-
github.com/prometheus/common v0.4.1
33-
github.com/sirupsen/logrus v1.4.2
34+
github.com/prometheus/common v0.10.0
35+
github.com/sirupsen/logrus v1.7.0
3436
github.com/spf13/cobra v1.0.0
3537
github.com/spf13/pflag v1.0.5
36-
github.com/stretchr/testify v1.5.1
38+
github.com/stretchr/testify v1.6.1
3739
golang.org/x/time v0.0.0-20191024005414-555d28b269f0
3840
google.golang.org/grpc v1.30.0
3941
gopkg.in/yaml.v2 v2.2.8
40-
helm.sh/helm/v3 v3.1.2
41-
k8s.io/api v0.18.9
42-
k8s.io/apiextensions-apiserver v0.18.9
43-
k8s.io/apimachinery v0.18.9
44-
k8s.io/apiserver v0.18.9
45-
k8s.io/client-go v0.18.9
46-
k8s.io/code-generator v0.18.9
47-
k8s.io/component-base v0.18.9
42+
helm.sh/helm/v3 v3.4.0
43+
k8s.io/api v0.19.3
44+
k8s.io/apiextensions-apiserver v0.19.3
45+
k8s.io/apimachinery v0.19.3
46+
k8s.io/apiserver v0.19.3
47+
k8s.io/client-go v0.19.3
48+
k8s.io/code-generator v0.19.3
49+
k8s.io/component-base v0.19.3
4850
k8s.io/klog v1.0.0
49-
k8s.io/kube-aggregator v0.18.9
50-
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
51+
k8s.io/kube-aggregator v0.19.3
52+
k8s.io/kube-openapi v0.0.0-20200805222855-6aeccd4b50c6
5153
rsc.io/letsencrypt v0.0.3 // indirect
5254
sigs.k8s.io/controller-runtime v0.6.0
5355
sigs.k8s.io/controller-tools v0.3.0
@@ -57,18 +59,17 @@ require (
5759
replace (
5860
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible
5961
github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 // Required by Helm
62+
63+
// controller runtime
6064
github.com/openshift/api => github.com/openshift/api v0.0.0-20200331152225-585af27e34fd // release-4.5
6165
github.com/openshift/client-go => github.com/openshift/client-go v0.0.0-20200326155132-2a6cd50aedd0 // release-4.5
6266

63-
github.com/prometheus/client_golang => github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829
64-
6567
// pinned because latest etcd does not yet work with the latest grpc version (1.30.0)
6668
go.etcd.io/etcd => go.etcd.io/etcd v0.5.0-alpha.5.0.20200520232829-54ba9589114f
6769
google.golang.org/grpc => google.golang.org/grpc v1.27.0
6870
google.golang.org/grpc/examples => google.golang.org/grpc/examples v0.0.0-20200709232328-d8193ee9cc3e
6971

7072
// pinned because no tag supports 1.18 yet
71-
helm.sh/helm/v3 => helm.sh/helm/v3 v3.1.0-rc.1.0.20200416205415-853ba2de16a0
7273
// pinned because no tag supports 1.18 yet
7374
sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.5.1-0.20200414221803-bac7e8aaf90a
7475
sigs.k8s.io/structured-merge-diff => sigs.k8s.io/structured-merge-diff v1.0.1-0.20191108220359-b1b620dd3f06

go.sum

Lines changed: 340 additions & 34 deletions
Large diffs are not rendered by default.

pkg/api/client/clientset/versioned/fake/register.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/api/client/listers/operators/v1/operator.go

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

pkg/api/client/listers/operators/v1/operatorgroup.go

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

pkg/api/client/listers/operators/v1alpha1/catalogsource.go

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

pkg/api/client/listers/operators/v1alpha1/clusterserviceversion.go

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

pkg/api/client/listers/operators/v1alpha1/installplan.go

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

pkg/api/client/listers/operators/v1alpha1/subscription.go

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

pkg/api/client/listers/operators/v1alpha2/operatorgroup.go

Lines changed: 5 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)