Skip to content

Commit 0469bf7

Browse files
authored
Merge pull request #276 from munnerz/k-1.15
⚠️ Update Kubernetes client libraries to 1.15.0 release
2 parents b4e73da + 711a951 commit 0469bf7

File tree

9 files changed

+431
-87
lines changed

9 files changed

+431
-87
lines changed

.golangci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
run:
22
modules-download-mode: readonly
3+
4+
# Increase the default deadline from 1m as some module operations can take a
5+
# while if uncached!
6+
deadline: 5m

Gopkg.lock

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

Gopkg.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ ignored = [
44

55
[[constraint]]
66
name="k8s.io/api"
7-
version="kubernetes-1.14.1"
7+
version="kubernetes-1.15.0"
88

99
[[constraint]]
1010
name="k8s.io/apiextensions-apiserver"
11-
version="kubernetes-1.14.1"
11+
version="kubernetes-1.15.0"
1212

1313
[[constraint]]
1414
name="k8s.io/apimachinery"
15-
version="kubernetes-1.14.1"
15+
version="kubernetes-1.15.0"
1616

1717
[[constraint]]
1818
name = "github.com/spf13/cobra"
1919
version = "v0.0.3"
20-
20+
2121
[[constraint]]
2222
name = "sigs.k8s.io/yaml"
2323
version = "v1.1.0"

go.mod

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,24 @@ require (
77
github.com/gobuffalo/flect v0.1.5
88
github.com/gogo/protobuf v1.2.1 // indirect
99
github.com/google/go-cmp v0.3.0
10-
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect
11-
github.com/inconshreveable/mousetrap v1.0.0 // indirect
1210
github.com/json-iterator/go v1.1.6 // indirect
1311
github.com/kr/pretty v0.1.0 // indirect
1412
github.com/mattn/go-colorable v0.1.2 // indirect
15-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
16-
github.com/modern-go/reflect2 v1.0.1 // indirect
1713
github.com/onsi/ginkgo v1.8.0
1814
github.com/onsi/gomega v1.5.0
1915
github.com/spf13/cobra v0.0.3
2016
github.com/spf13/pflag v1.0.3
2117
golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09 // indirect
22-
golang.org/x/sys v0.0.0-20190429190828-d89cdac9e872 // indirect
18+
golang.org/x/sys v0.0.0-20190502175342-a43fa875dd82 // indirect
2319
golang.org/x/text v0.3.2 // indirect
2420
golang.org/x/tools v0.0.0-20190501045030-23463209683d
2521
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
2622
gopkg.in/inf.v0 v0.9.1 // indirect
2723
gopkg.in/yaml.v2 v2.2.2 // indirect
28-
gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22
29-
k8s.io/api v0.0.0-20190409021203-6e4e0e4f393b
30-
k8s.io/apiextensions-apiserver v0.0.0-20190409022649-727a075fdec8
31-
k8s.io/apimachinery v0.0.0-20190404173353-6a84e37a896d
32-
k8s.io/klog v0.2.0 // indirect
24+
gopkg.in/yaml.v3 v3.0.0-20190905181640-827449938966
25+
k8s.io/api v0.0.0-20190620084959-7cf5895f2711
26+
k8s.io/apiextensions-apiserver v0.0.0-20190620085554-14e95df34f1f
27+
k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719
28+
k8s.io/utils v0.0.0-20190607212802-c55fbcfc754a // indirect
3329
sigs.k8s.io/yaml v1.1.0
3430
)

0 commit comments

Comments
 (0)