Skip to content

Commit bfe2e70

Browse files
zimbatmFxKu
authored andcommitted
go.mod: fix dependencies (#754)
Fix build issue: go/pkg/mod/k8s.io/client-go@v11.0.0+incompatible/rest/request.go:598:31: not enough arguments in call to watch.NewStreamWatcher
1 parent cd110aa commit bfe2e70

File tree

3 files changed

+33
-52
lines changed

3 files changed

+33
-52
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ scm-source.json: .git
7979

8080
tools:
8181
GO111MODULE=on go get -u honnef.co/go/tools/cmd/staticcheck
82-
GO111MODULE=on go get k8s.io/client-go@kubernetes-1.16.0
82+
GO111MODULE=on go get k8s.io/client-go@kubernetes-1.16.3
83+
GO111MODULE=on go mod tidy
8384

8485
fmt:
8586
@gofmt -l -w -s $(DIRS)

go.mod

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,22 @@ go 1.12
44

55
require (
66
github.com/aws/aws-sdk-go v1.25.44
7+
github.com/emicklei/go-restful v2.9.6+incompatible // indirect
8+
github.com/evanphx/json-patch v4.5.0+incompatible // indirect
9+
github.com/googleapis/gnostic v0.3.0 // indirect
710
github.com/imdario/mergo v0.3.8 // indirect
811
github.com/lib/pq v1.2.0
912
github.com/motomux/pretty v0.0.0-20161209205251-b2aad2c9a95d
1013
github.com/sirupsen/logrus v1.4.2
11-
golang.org/x/crypto v0.0.0-20191202143827-86a70503ff7e // indirect
12-
golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933 // indirect
13-
golang.org/x/sys v0.0.0-20191128015809-6d18c012aee9 // indirect
14-
golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d // indirect
14+
golang.org/x/crypto v0.0.0-20191206172530-e9b2fee46413 // indirect
15+
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
16+
golang.org/x/sys v0.0.0-20191210023423-ac6580df4449 // indirect
17+
golang.org/x/tools v0.0.0-20191209225234-22774f7dae43 // indirect
1518
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
1619
gopkg.in/yaml.v2 v2.2.4
1720
k8s.io/api v0.0.0-20191121015604-11707872ac1c
18-
k8s.io/apiextensions-apiserver v0.0.0-20191121021419-88daf26ec3b8
19-
k8s.io/apimachinery v0.0.0-20191121015412-41065c7a8c2a
20-
k8s.io/client-go v11.0.0+incompatible
21+
k8s.io/apiextensions-apiserver v0.0.0-20191204090421-cd61debedab5
22+
k8s.io/apimachinery v0.0.0-20191203211716-adc6f4cd9e7d
23+
k8s.io/client-go v0.0.0-20191204082520-bc9b51d240b2
2124
k8s.io/code-generator v0.0.0-20191121015212-c4c8f8345c7e
22-
sigs.k8s.io/kind v0.5.1 // indirect
2325
)

0 commit comments

Comments
 (0)