@@ -30,6 +30,7 @@ import (
30
30
"k8s.io/client-go/pkg/api/unversioned"
31
31
"k8s.io/client-go/pkg/api/v1"
32
32
"k8s.io/client-go/pkg/runtime"
33
+ "k8s.io/client-go/pkg/runtime/schema"
33
34
"k8s.io/client-go/pkg/runtime/serializer"
34
35
"k8s.io/client-go/pkg/version"
35
36
"k8s.io/client-go/rest"
@@ -69,10 +70,10 @@ type ServerResourcesInterface interface {
69
70
ServerResources () (map [string ]* unversioned.APIResourceList , error )
70
71
// ServerPreferredResources returns the supported resources with the version preferred by the
71
72
// server.
72
- ServerPreferredResources () ([]unversioned .GroupVersionResource , error )
73
+ ServerPreferredResources () ([]schema .GroupVersionResource , error )
73
74
// ServerPreferredNamespacedResources returns the supported namespaced resources with the
74
75
// version preferred by the server.
75
- ServerPreferredNamespacedResources () ([]unversioned .GroupVersionResource , error )
76
+ ServerPreferredNamespacedResources () ([]schema .GroupVersionResource , error )
76
77
}
77
78
78
79
// ServerVersionInterface has a method for retrieving the server's version.
@@ -84,7 +85,7 @@ type ServerVersionInterface interface {
84
85
// SwaggerSchemaInterface has a method to retrieve the swagger schema.
85
86
type SwaggerSchemaInterface interface {
86
87
// SwaggerSchema retrieves and parses the swagger API schema the server supports.
87
- SwaggerSchema (version unversioned .GroupVersion ) (* swagger.ApiDeclaration , error )
88
+ SwaggerSchema (version schema .GroupVersion ) (* swagger.ApiDeclaration , error )
88
89
}
89
90
90
91
// DiscoveryClient implements the functions that discover server-supported API groups,
@@ -186,7 +187,7 @@ func (d *DiscoveryClient) ServerResources() (map[string]*unversioned.APIResource
186
187
// ErrGroupDiscoveryFailed is returned if one or more API groups fail to load.
187
188
type ErrGroupDiscoveryFailed struct {
188
189
// Groups is a list of the groups that failed to load and the error cause
189
- Groups map [unversioned .GroupVersion ]error
190
+ Groups map [schema .GroupVersion ]error
190
191
}
191
192
192
193
// Error implements the error interface
@@ -208,40 +209,57 @@ func IsGroupDiscoveryFailedError(err error) bool {
208
209
209
210
// serverPreferredResources returns the supported resources with the version preferred by the
210
211
// server. If namespaced is true, only namespaced resources will be returned.
211
- func (d * DiscoveryClient ) serverPreferredResources (namespaced bool ) ([]unversioned .GroupVersionResource , error ) {
212
+ func (d * DiscoveryClient ) serverPreferredResources (namespaced bool ) ([]schema .GroupVersionResource , error ) {
212
213
// retry in case the groups supported by the server change after ServerGroup() returns.
213
214
const maxRetries = 2
214
- var failedGroups map [unversioned.GroupVersion ]error
215
- var results []unversioned.GroupVersionResource
215
+ var failedGroups map [schema.GroupVersion ]error
216
+ var results []schema.GroupVersionResource
217
+ var resources map [schema.GroupResource ]string
216
218
RetrieveGroups:
217
219
for i := 0 ; i < maxRetries ; i ++ {
218
- results = []unversioned.GroupVersionResource {}
219
- failedGroups = make (map [unversioned.GroupVersion ]error )
220
+ results = []schema.GroupVersionResource {}
221
+ resources = map [schema.GroupResource ]string {}
222
+ failedGroups = make (map [schema.GroupVersion ]error )
220
223
serverGroupList , err := d .ServerGroups ()
221
224
if err != nil {
222
225
return results , err
223
226
}
224
227
225
228
for _ , apiGroup := range serverGroupList .Groups {
226
- preferredVersion := apiGroup .PreferredVersion
227
- groupVersion := unversioned.GroupVersion {Group : apiGroup .Name , Version : preferredVersion .Version }
228
- apiResourceList , err := d .ServerResourcesForGroupVersion (preferredVersion .GroupVersion )
229
- if err != nil {
230
- if i < maxRetries - 1 {
231
- continue RetrieveGroups
232
- }
233
- failedGroups [groupVersion ] = err
234
- continue
235
- }
236
- for _ , apiResource := range apiResourceList .APIResources {
237
- // ignore the root scoped resources if "namespaced" is true.
238
- if namespaced && ! apiResource .Namespaced {
229
+ versions := apiGroup .Versions
230
+ for _ , version := range versions {
231
+ groupVersion := schema.GroupVersion {Group : apiGroup .Name , Version : version .Version }
232
+ apiResourceList , err := d .ServerResourcesForGroupVersion (version .GroupVersion )
233
+ if err != nil {
234
+ if i < maxRetries - 1 {
235
+ continue RetrieveGroups
236
+ }
237
+ failedGroups [groupVersion ] = err
239
238
continue
240
239
}
241
- if strings .Contains (apiResource .Name , "/" ) {
242
- continue
240
+ for _ , apiResource := range apiResourceList .APIResources {
241
+ // ignore the root scoped resources if "namespaced" is true.
242
+ if namespaced && ! apiResource .Namespaced {
243
+ continue
244
+ }
245
+ if strings .Contains (apiResource .Name , "/" ) {
246
+ continue
247
+ }
248
+ gvr := groupVersion .WithResource (apiResource .Name )
249
+ if _ , ok := resources [gvr .GroupResource ()]; ok {
250
+ if gvr .Version != apiGroup .PreferredVersion .Version {
251
+ continue
252
+ }
253
+ // remove previous entry, because it will be replaced with a preferred one
254
+ for i := range results {
255
+ if results [i ].GroupResource () == gvr .GroupResource () {
256
+ results = append (results [:i ], results [i + 1 :]... )
257
+ }
258
+ }
259
+ }
260
+ resources [gvr .GroupResource ()] = gvr .Version
261
+ results = append (results , gvr )
243
262
}
244
- results = append (results , groupVersion .WithResource (apiResource .Name ))
245
263
}
246
264
}
247
265
if len (failedGroups ) == 0 {
@@ -253,13 +271,13 @@ RetrieveGroups:
253
271
254
272
// ServerPreferredResources returns the supported resources with the version preferred by the
255
273
// server.
256
- func (d * DiscoveryClient ) ServerPreferredResources () ([]unversioned .GroupVersionResource , error ) {
274
+ func (d * DiscoveryClient ) ServerPreferredResources () ([]schema .GroupVersionResource , error ) {
257
275
return d .serverPreferredResources (false )
258
276
}
259
277
260
278
// ServerPreferredNamespacedResources returns the supported namespaced resources with the
261
279
// version preferred by the server.
262
- func (d * DiscoveryClient ) ServerPreferredNamespacedResources () ([]unversioned .GroupVersionResource , error ) {
280
+ func (d * DiscoveryClient ) ServerPreferredNamespacedResources () ([]schema .GroupVersionResource , error ) {
263
281
return d .serverPreferredResources (true )
264
282
}
265
283
@@ -278,7 +296,7 @@ func (d *DiscoveryClient) ServerVersion() (*version.Info, error) {
278
296
}
279
297
280
298
// SwaggerSchema retrieves and parses the swagger API schema the server supports.
281
- func (d * DiscoveryClient ) SwaggerSchema (version unversioned .GroupVersion ) (* swagger.ApiDeclaration , error ) {
299
+ func (d * DiscoveryClient ) SwaggerSchema (version schema .GroupVersion ) (* swagger.ApiDeclaration , error ) {
282
300
if version .Empty () {
283
301
return nil , fmt .Errorf ("groupVersion cannot be empty" )
284
302
}
0 commit comments