Skip to content

Commit fae2dbc

Browse files
authored
Update k8s client (#197)
* Update k8s client Signed-off-by: Jose Fuentes <[email protected]> * Fix tests Signed-off-by: Jose Fuentes <[email protected]>
1 parent 63fed39 commit fae2dbc

File tree

4 files changed

+190
-462
lines changed

4 files changed

+190
-462
lines changed

go.mod

Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,28 @@ module github.com/jetstack/preflight
22

33
go 1.13
44

5+
replace k8s.io/client-go => k8s.io/client-go v0.19.1
6+
57
require (
6-
cloud.google.com/go/storage v1.4.0
7-
github.com/Azure/aks-engine v0.43.1
8-
github.com/Azure/azure-pipeline-go v0.2.2 // indirect
9-
github.com/Azure/azure-storage-blob-go v0.8.0
8+
github.com/Azure/aks-engine v0.55.3
109
github.com/aws/aws-sdk-go v1.25.30
11-
github.com/blang/semver v3.5.1+incompatible
1210
github.com/cenkalti/backoff v2.0.0+incompatible
1311
github.com/d4l3k/messagediff v1.2.1 // indirect
14-
github.com/gomarkdown/markdown v0.0.0-20191104174740-4d42851d4d5a
15-
github.com/google/go-cmp v0.3.0
16-
github.com/gookit/color v1.2.0
1712
github.com/hashicorp/go-multierror v1.0.0
1813
github.com/juju/errors v0.0.0-20190930114154-d42613fe1ab9
1914
github.com/juju/loggo v0.0.0-20190526231331-6e530bcce5d8 // indirect
2015
github.com/juju/testing v0.0.0-20191001232224-ce9dec17d28b // indirect
16+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
2117
github.com/kylelemons/godebug v1.1.0
22-
github.com/mattn/go-colorable v0.1.4 // indirect
23-
github.com/mattn/go-ieproxy v0.0.0-20191113090002-7c0f6868bffe // indirect
24-
github.com/open-policy-agent/opa v0.16.0
25-
github.com/pkg/errors v0.8.1
18+
github.com/pkg/errors v0.9.1
2619
github.com/spf13/cobra v0.0.5
2720
github.com/spf13/pflag v1.0.5
28-
github.com/spf13/viper v1.5.0
29-
github.com/yudai/gojsondiff v1.0.0
30-
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect
3121
golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6
32-
golang.org/x/sys v0.0.0-20200120151820-655fe14d7479 // indirect
3322
google.golang.org/api v0.15.0
3423
gopkg.in/d4l3k/messagediff.v1 v1.2.1
35-
gopkg.in/yaml.v2 v2.2.7
36-
k8s.io/apimachinery v0.17.0
24+
gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce // indirect
25+
gopkg.in/yaml.v2 v2.3.0
26+
k8s.io/apimachinery v0.19.1
3727
k8s.io/client-go v10.0.0+incompatible
38-
k8s.io/utils v0.0.0-20191114184206-e782cd3c129f
28+
k8s.io/utils v0.0.0-20200729134348-d5654de09c73
3929
)
40-
41-
// This is needed because otherwise k8s.io/client-go is forced
42-
// to v10.0.0+incompatible because of aks-engine, and that
43-
// causes another set of problems with inconsistent dependencies.
44-
replace k8s.io/client-go => k8s.io/client-go v0.17.0

0 commit comments

Comments
 (0)