Skip to content

Commit e6d97ac

Browse files
committed
Rebase on client-go v12.0.0
That's the first officially tagged client-go release supporting go mod. Also, the client-go version used in Kubernetes 1.15.0. Needed some bit shuffling since `dynamic` package changed quite a bit. While at it, up all dependencies.
1 parent 778dbb1 commit e6d97ac

File tree

5 files changed

+265
-142
lines changed

5 files changed

+265
-142
lines changed

go.mod

+8-45
Original file line numberDiff line numberDiff line change
@@ -3,50 +3,13 @@ module github.com/bpineau/katafygio
33
go 1.12
44

55
require (
6-
cloud.google.com/go v0.0.0-20160913182117-3b1ae45394a2
7-
github.com/Azure/go-autorest v9.10.0+incompatible
8-
github.com/cpuguy83/go-md2man v0.0.0-20180619205630-691ee98543af
9-
github.com/davecgh/go-spew v1.1.0
10-
github.com/dgrijalva/jwt-go v0.0.0-20160705203006-01aeca54ebda
11-
github.com/fsnotify/fsnotify v1.4.7
126
github.com/ghodss/yaml v1.0.0
13-
github.com/gogo/protobuf v0.0.0-20170330071051-c0656edd0d9e
14-
github.com/golang/glog v0.0.0-20141105023935-44145f04b68c
15-
github.com/golang/protobuf v0.0.0-20171021043952-1643683e1b54
16-
github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367
17-
github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d
18-
github.com/gophercloud/gophercloud v0.0.0-20180210024343-6da026c32e2d
19-
github.com/hashicorp/golang-lru v0.0.0-20160207214719-a0d98a5f2880
20-
github.com/hashicorp/hcl v0.0.0-20180404174102-ef8a98b0bbce
21-
github.com/howeyc/gopass v0.0.0-20170109162249-bf9dde6d0d2c
22-
github.com/imdario/mergo v0.0.0-20141206190957-6633656539c1
23-
github.com/inconshreveable/mousetrap v1.0.0
24-
github.com/json-iterator/go v0.0.0-20171212105241-13f86432b882
25-
github.com/magiconair/properties v1.8.0
26-
github.com/mitchellh/mapstructure v0.0.0-20180511142126-bb74f1db0675
27-
github.com/pelletier/go-toml v1.2.0
28-
github.com/russross/blackfriday v0.0.0-20180526075726-670777b536d3
29-
github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95
30-
github.com/sirupsen/logrus v1.0.5
31-
github.com/spf13/afero v1.1.1
32-
github.com/spf13/cast v1.2.0
33-
github.com/spf13/cobra v0.0.3
34-
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec
35-
github.com/spf13/pflag v1.0.1
36-
github.com/spf13/viper v1.0.2
37-
github.com/stretchr/testify v1.3.0 // indirect
38-
golang.org/x/crypto v0.0.0-20170825220121-81e90905daef
39-
golang.org/x/net v0.0.0-20170809000501-1c05540f6879
40-
golang.org/x/oauth2 v0.0.0-20170412232759-a6bd8cefa181
41-
golang.org/x/sys v0.0.0-20171031081856-95c657629925
42-
golang.org/x/text v0.0.0-20170810154203-b19bf474d317
43-
golang.org/x/time v0.0.0-20161028155119-f51c12702a4d
44-
google.golang.org/appengine v0.0.0-20160301025000-12d5545dc1cf
45-
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
46-
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
47-
gopkg.in/inf.v0 v0.9.0
48-
gopkg.in/yaml.v2 v2.0.0-20170721113624-670d4cfef054
49-
k8s.io/api v0.0.0-20180308224125-73d903622b73
50-
k8s.io/apimachinery v0.0.0-20180228050457-302974c03f7e
51-
k8s.io/client-go v7.0.0+incompatible
7+
github.com/sirupsen/logrus v1.4.2
8+
github.com/spf13/afero v1.2.2
9+
github.com/spf13/cobra v0.0.5
10+
github.com/spf13/viper v1.4.0
11+
k8s.io/api v0.0.0-20190620084959-7cf5895f2711
12+
k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719
13+
k8s.io/client-go v0.0.0-20190620085101-78d2af792bab
14+
k8s.io/klog v0.3.1
5215
)

0 commit comments

Comments
 (0)