Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Commit 0e71887

Browse files
committed
*: bump to Kubernetes v1.10
1 parent 2fc32e3 commit 0e71887

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
KUBE_VERSION=1.9.1
1+
KUBE_VERSION=1.10.1
22

33
build:
44
go build -v ./...

scripts/register.go

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,18 @@ var apiGroups = []APIGroup{
6868
},
6969
},
7070
},
71+
{
72+
Package: "apiregistration",
73+
Group: "apiregistration.k8s.io",
74+
Versions: map[string][]Resource{
75+
"v1": []Resource{
76+
{"APIService", "", NotNamespaced},
77+
},
78+
"v1beta1": []Resource{
79+
{"APIService", "", NotNamespaced},
80+
},
81+
},
82+
},
7183
{
7284
Package: "apps",
7385
Group: "apps",
@@ -99,6 +111,7 @@ var apiGroups = []APIGroup{
99111
Versions: map[string][]Resource{
100112
"v1": []Resource{
101113
{"TokenReview", "", NotNamespaced | NoList},
114+
{"TokenRequest", "", NotNamespaced | NoList},
102115
},
103116
"v1beta1": []Resource{
104117
{"TokenReview", "", NotNamespaced | NoList},
@@ -219,6 +232,7 @@ var apiGroups = []APIGroup{
219232
Versions: map[string][]Resource{
220233
"v1beta1": []Resource{
221234
{"PodDisruptionBudget", "", 0},
235+
{"PodSecurityPolicy", "", NotNamespaced},
222236
},
223237
},
224238
},

0 commit comments

Comments
 (0)