171 lines
4.9 KiB
Go
171 lines
4.9 KiB
Go
/*
|
|
Copyright 2022 The Kruise Authors.
|
|
Copyright 2018 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 client
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"strings"
|
|
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/client-go/rest"
|
|
"sigs.k8s.io/controller-runtime/pkg/cache"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/client/apiutil"
|
|
)
|
|
|
|
var (
|
|
disableNoDeepCopy bool
|
|
)
|
|
|
|
func init() {
|
|
flag.BoolVar(&disableNoDeepCopy, "disable-no-deepcopy", false, "If you are going to disable NoDeepCopy List in some controllers and webhooks.")
|
|
}
|
|
|
|
// NewClient creates the default caching client with disable deepcopy list from cache.
|
|
func NewClient(cache cache.Cache, config *rest.Config, options client.Options, uncachedObjects ...client.Object) (client.Client, error) {
|
|
c, err := client.New(config, options)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
uncachedGVKs := map[schema.GroupVersionKind]struct{}{}
|
|
for _, obj := range uncachedObjects {
|
|
gvk, err := apiutil.GVKForObject(obj, c.Scheme())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
uncachedGVKs[gvk] = struct{}{}
|
|
}
|
|
|
|
return &delegatingClient{
|
|
scheme: c.Scheme(),
|
|
mapper: c.RESTMapper(),
|
|
Reader: &delegatingReader{
|
|
CacheReader: cache,
|
|
ClientReader: c,
|
|
noDeepCopyLister: &noDeepCopyLister{cache: cache, scheme: c.Scheme()},
|
|
scheme: c.Scheme(),
|
|
uncachedGVKs: uncachedGVKs,
|
|
cacheUnstructured: true,
|
|
},
|
|
Writer: c,
|
|
StatusClient: c,
|
|
SubResourceClientConstructor: c,
|
|
}, nil
|
|
}
|
|
|
|
type delegatingClient struct {
|
|
client.Reader
|
|
client.Writer
|
|
client.StatusClient
|
|
client.SubResourceClientConstructor
|
|
|
|
scheme *runtime.Scheme
|
|
mapper meta.RESTMapper
|
|
}
|
|
|
|
// Scheme returns the scheme this client is using.
|
|
func (d *delegatingClient) Scheme() *runtime.Scheme {
|
|
return d.scheme
|
|
}
|
|
|
|
// RESTMapper returns the rest mapper this client is using.
|
|
func (d *delegatingClient) RESTMapper() meta.RESTMapper {
|
|
return d.mapper
|
|
}
|
|
|
|
// delegatingReader forms a Reader that will cause Get and List requests for
|
|
// unstructured types to use the ClientReader while requests for any other type
|
|
// of object with use the CacheReader. This avoids accidentally caching the
|
|
// entire cluster in the common case of loading arbitrary unstructured objects
|
|
// (e.g. from OwnerReferences).
|
|
type delegatingReader struct {
|
|
CacheReader client.Reader
|
|
ClientReader client.Reader
|
|
|
|
noDeepCopyLister *noDeepCopyLister
|
|
|
|
uncachedGVKs map[schema.GroupVersionKind]struct{}
|
|
scheme *runtime.Scheme
|
|
cacheUnstructured bool
|
|
}
|
|
|
|
func (d *delegatingReader) shouldBypassCache(obj runtime.Object) (bool, error) {
|
|
gvk, err := apiutil.GVKForObject(obj, d.scheme)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
// TODO: this is producing unsafe guesses that don't actually work,
|
|
// but it matches ~99% of the cases out there.
|
|
if meta.IsListType(obj) {
|
|
gvk.Kind = strings.TrimSuffix(gvk.Kind, "List")
|
|
}
|
|
if _, isUncached := d.uncachedGVKs[gvk]; isUncached {
|
|
return true, nil
|
|
}
|
|
if !d.cacheUnstructured {
|
|
_, isUnstructured := obj.(*unstructured.Unstructured)
|
|
_, isUnstructuredList := obj.(*unstructured.UnstructuredList)
|
|
return isUnstructured || isUnstructuredList, nil
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
// Get retrieves an obj for a given object key from the Kubernetes Cluster.
|
|
func (d *delegatingReader) Get(ctx context.Context, key client.ObjectKey, obj client.Object, opts ...client.GetOption) error {
|
|
if isUncached, err := d.shouldBypassCache(obj); err != nil {
|
|
return err
|
|
} else if isUncached {
|
|
return d.ClientReader.Get(ctx, key, obj, opts...)
|
|
}
|
|
return d.CacheReader.Get(ctx, key, obj, opts...)
|
|
}
|
|
|
|
// List retrieves list of objects for a given namespace and list options.
|
|
func (d *delegatingReader) List(ctx context.Context, list client.ObjectList, opts ...client.ListOption) error {
|
|
if isUncached, err := d.shouldBypassCache(list); err != nil {
|
|
return err
|
|
} else if isUncached {
|
|
return d.ClientReader.List(ctx, list, opts...)
|
|
}
|
|
if !disableNoDeepCopy && isDisableDeepCopy(opts) {
|
|
return d.noDeepCopyLister.List(ctx, list, opts...)
|
|
}
|
|
return d.CacheReader.List(ctx, list, opts...)
|
|
}
|
|
|
|
var DisableDeepCopy = disableDeepCopy{}
|
|
|
|
type disableDeepCopy struct{}
|
|
|
|
func (_ disableDeepCopy) ApplyToList(_ *client.ListOptions) {
|
|
}
|
|
|
|
func isDisableDeepCopy(opts []client.ListOption) bool {
|
|
for _, opt := range opts {
|
|
if opt == DisableDeepCopy {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|