-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds a rest mapper that will lazily query the provided client for discovery information to do REST mappings.
- Loading branch information
Showing
1 changed file
with
260 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,260 @@ | ||
/* | ||
Copyright 2023 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package apiutil | ||
|
||
import ( | ||
"sync" | ||
|
||
"k8s.io/apimachinery/pkg/api/meta" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
utilruntime "k8s.io/apimachinery/pkg/util/runtime" | ||
"k8s.io/client-go/discovery" | ||
"k8s.io/client-go/rest" | ||
"k8s.io/client-go/restmapper" | ||
) | ||
|
||
// LazyRESTMapper is a RESTMapper that will lazily query the provided | ||
// client for discovery information to do REST mappings. | ||
type LazyRESTMapper struct { | ||
mapper meta.RESTMapper | ||
client *discovery.DiscoveryClient | ||
knownGroups []string | ||
} | ||
|
||
// NewLazyRESTMapper initializes a LazyRESTMapper | ||
func NewLazyRESTMapper(c *rest.Config) (meta.RESTMapper, error) { | ||
dc, err := discovery.NewDiscoveryClientForConfig(c) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &LazyRESTMapper{ | ||
mapper: restmapper.NewDiscoveryRESTMapper([]*restmapper.APIGroupResources{}), | ||
client: dc, | ||
}, nil | ||
} | ||
|
||
func (m *LazyRESTMapper) addKnownGroupAndReload(groupName string) error { | ||
m.knownGroups = append(m.knownGroups, groupName) | ||
|
||
groupResources, err := m.getFilteredAPIGroupResources(m.client) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
m.mapper = restmapper.NewDiscoveryRESTMapper(groupResources) | ||
|
||
return nil | ||
} | ||
|
||
// KindFor implements Mapper.KindFor | ||
func (m *LazyRESTMapper) KindFor(resource schema.GroupVersionResource) (schema.GroupVersionKind, error) { | ||
res, err := m.mapper.KindFor(resource) | ||
if meta.IsNoMatchError(err) { | ||
if err = m.addKnownGroupAndReload(resource.Group); err != nil { | ||
return res, err | ||
} | ||
res, err = m.mapper.KindFor(resource) | ||
} | ||
return res, err | ||
} | ||
|
||
// KindsFor implements Mapper.KindsFor | ||
func (m *LazyRESTMapper) KindsFor(resource schema.GroupVersionResource) ([]schema.GroupVersionKind, error) { | ||
res, err := m.mapper.KindsFor(resource) | ||
if meta.IsNoMatchError(err) { | ||
if err = m.addKnownGroupAndReload(resource.Group); err != nil { | ||
return res, err | ||
} | ||
res, err = m.mapper.KindsFor(resource) | ||
} | ||
return res, err | ||
} | ||
|
||
// ResourceFor implements Mapper.ResourceFor | ||
func (m *LazyRESTMapper) ResourceFor(input schema.GroupVersionResource) (schema.GroupVersionResource, error) { | ||
res, err := m.mapper.ResourceFor(input) | ||
if meta.IsNoMatchError(err) { | ||
if err = m.addKnownGroupAndReload(input.Group); err != nil { | ||
return res, err | ||
} | ||
res, err = m.mapper.ResourceFor(input) | ||
} | ||
return res, err | ||
} | ||
|
||
// ResourcesFor implements Mapper.ResourcesFor | ||
func (m *LazyRESTMapper) ResourcesFor(input schema.GroupVersionResource) ([]schema.GroupVersionResource, error) { | ||
res, err := m.mapper.ResourcesFor(input) | ||
if meta.IsNoMatchError(err) { | ||
if err = m.addKnownGroupAndReload(input.Group); err != nil { | ||
return res, err | ||
} | ||
res, err = m.mapper.ResourcesFor(input) | ||
} | ||
return res, err | ||
} | ||
|
||
// RESTMapping implements Mapper.RESTMapping | ||
func (m *LazyRESTMapper) RESTMapping(gk schema.GroupKind, versions ...string) (*meta.RESTMapping, error) { | ||
res, err := m.mapper.RESTMapping(gk, versions...) | ||
if meta.IsNoMatchError(err) { | ||
if err = m.addKnownGroupAndReload(gk.Group); err != nil { | ||
return res, err | ||
} | ||
res, err = m.mapper.RESTMapping(gk, versions...) | ||
} | ||
return res, err | ||
} | ||
|
||
// RESTMappings implements Mapper.RESTMappings | ||
func (m *LazyRESTMapper) RESTMappings(gk schema.GroupKind, versions ...string) ([]*meta.RESTMapping, error) { | ||
res, err := m.mapper.RESTMappings(gk, versions...) | ||
if meta.IsNoMatchError(err) { | ||
if err = m.addKnownGroupAndReload(gk.Group); err != nil { | ||
return res, err | ||
} | ||
res, err = m.mapper.RESTMappings(gk, versions...) | ||
} | ||
return res, err | ||
} | ||
|
||
// ResourceSingularizer implements Mapper.ResourceSingularizer | ||
func (m *LazyRESTMapper) ResourceSingularizer(resource string) (string, error) { | ||
res, err := m.mapper.ResourceSingularizer(resource) | ||
if meta.IsNoMatchError(err) { | ||
res, err = m.mapper.ResourceSingularizer(resource) | ||
} | ||
return res, err | ||
} | ||
|
||
// fetchGroupVersionResources uses the discovery client to fetch the resources for the specified groups in parallel. | ||
// Mainly replicates the same named function from the client-go internals aside from the changed `apiGroups` argument type (uses slice instead of APIGroupList). | ||
// ref: https://github.com/kubernetes/kubernetes/blob/a84d877310ba5cf9237c8e8e3218229c202d3a1e/staging/src/k8s.io/client-go/discovery/discovery_client.go#L506 | ||
func fetchGroupVersionResources(d discovery.DiscoveryInterface, apiGroups []*metav1.APIGroup) (map[schema.GroupVersion]*metav1.APIResourceList, map[schema.GroupVersion]error) { | ||
groupVersionResources := make(map[schema.GroupVersion]*metav1.APIResourceList) | ||
failedGroups := make(map[schema.GroupVersion]error) | ||
|
||
wg := &sync.WaitGroup{} | ||
resultLock := &sync.Mutex{} | ||
for _, apiGroup := range apiGroups { | ||
for _, version := range apiGroup.Versions { | ||
groupVersion := schema.GroupVersion{Group: apiGroup.Name, Version: version.Version} | ||
wg.Add(1) | ||
go func() { | ||
defer wg.Done() | ||
defer utilruntime.HandleCrash() | ||
|
||
apiResourceList, err := d.ServerResourcesForGroupVersion(groupVersion.String()) | ||
|
||
// lock to record results | ||
resultLock.Lock() | ||
defer resultLock.Unlock() | ||
|
||
if err != nil { | ||
// TODO: maybe restrict this to NotFound errors | ||
failedGroups[groupVersion] = err | ||
} | ||
if apiResourceList != nil { | ||
// even in case of error, some fallback might have been returned | ||
groupVersionResources[groupVersion] = apiResourceList | ||
} | ||
}() | ||
} | ||
} | ||
wg.Wait() | ||
|
||
return groupVersionResources, failedGroups | ||
} | ||
|
||
// filteredServerGroupsAndResources returns the supported resources for groups filtered by passed predicate and versions. | ||
// Mainly replicate ServerGroupsAndResources function from the client-go. The difference is that this function takes | ||
// a function of the GroupFilterPredicate type as an argument for filtering out unwanted groups. | ||
// ref: https://github.com/kubernetes/kubernetes/blob/a84d877310ba5cf9237c8e8e3218229c202d3a1e/staging/src/k8s.io/client-go/discovery/discovery_client.go#L383 | ||
func (m *LazyRESTMapper) filteredServerGroupsAndResources(d discovery.DiscoveryInterface) ([]*metav1.APIGroup, []*metav1.APIResourceList, error) { | ||
sgs, err := d.ServerGroups() | ||
if sgs == nil { | ||
return nil, nil, err | ||
} | ||
resultGroups := []*metav1.APIGroup{} | ||
for i := range sgs.Groups { | ||
if m.isGroupKnown((&sgs.Groups[i]).Name) { | ||
resultGroups = append(resultGroups, &sgs.Groups[i]) | ||
} | ||
} | ||
|
||
groupVersionResources, failedGroups := fetchGroupVersionResources(d, resultGroups) | ||
|
||
// order results by group/version discovery order | ||
result := []*metav1.APIResourceList{} | ||
for _, apiGroup := range resultGroups { | ||
for _, version := range apiGroup.Versions { | ||
gv := schema.GroupVersion{Group: apiGroup.Name, Version: version.Version} | ||
if resources, ok := groupVersionResources[gv]; ok { | ||
result = append(result, resources) | ||
} | ||
} | ||
} | ||
|
||
if len(failedGroups) == 0 { | ||
return resultGroups, result, nil | ||
} | ||
|
||
return resultGroups, result, &discovery.ErrGroupDiscoveryFailed{Groups: failedGroups} | ||
} | ||
|
||
// getFilteredAPIGroupResources uses the provided discovery client to gather | ||
// discovery information and populate a slice of APIGroupResources. | ||
func (m *LazyRESTMapper) getFilteredAPIGroupResources(cl discovery.DiscoveryInterface) ([]*restmapper.APIGroupResources, error) { | ||
gs, rs, err := m.filteredServerGroupsAndResources(cl) | ||
if rs == nil || gs == nil { | ||
return nil, err | ||
// TODO track the errors and update callers to handle partial errors. | ||
} | ||
rsm := map[string]*metav1.APIResourceList{} | ||
for _, r := range rs { | ||
rsm[r.GroupVersion] = r | ||
} | ||
|
||
result := []*restmapper.APIGroupResources{} | ||
for _, group := range gs { | ||
groupResources := &restmapper.APIGroupResources{ | ||
Group: *group, | ||
VersionedResources: make(map[string][]metav1.APIResource), | ||
} | ||
for _, version := range group.Versions { | ||
resources, ok := rsm[version.GroupVersion] | ||
if !ok { | ||
continue | ||
} | ||
groupResources.VersionedResources[version.Version] = resources.APIResources | ||
} | ||
result = append(result, groupResources) | ||
} | ||
return result, nil | ||
} | ||
|
||
func (m *LazyRESTMapper) isGroupKnown(groupName string) bool { | ||
for _, knownGroup := range m.knownGroups { | ||
if groupName == knownGroup { | ||
return true | ||
} | ||
} | ||
|
||
return false | ||
} |