mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-01-20 16:42:51 +08:00
59834affa2
Automatic merge from submit-queue (batch tested with PRs 56128, 56004, 56083, 55833, 56042). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Graduate the admission and admissionregistration (webhook part) API to v1beta1 ref: kubernetes/features#492 Most changes are mechanical. Please take a look at the commit message to see if the commit is worth reviewing. ```release-note Action required: The `admission/v1alpha1` API has graduated to `v1beta1`. Please delete your existing webhooks before upgrading the cluster, and update your admission webhooks to use the latest API, because the API has backwards incompatible changes. The webhook registration related part of the `admissionregistration` API has graduated to `v1beta1`. Please delete your existing configurations before upgrading the cluster, and update your configuration file to use the latest API. ``` Kubernetes-commit: 4cafc5459bf987d2476efd0a4c17158a158887a3
96 lines
3.2 KiB
Go
96 lines
3.2 KiB
Go
/*
|
|
Copyright 2016 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 discovery
|
|
|
|
import (
|
|
"reflect"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
// UnstructuredObjectTyper provides a runtime.ObjectTyper implementation for
|
|
// runtime.Unstructured object based on discovery information.
|
|
type UnstructuredObjectTyper struct {
|
|
registered map[schema.GroupVersionKind]bool
|
|
typers []runtime.ObjectTyper
|
|
}
|
|
|
|
// NewUnstructuredObjectTyper returns a runtime.ObjectTyper for
|
|
// unstructured objects based on discovery information. It accepts a list of fallback typers
|
|
// for handling objects that are not runtime.Unstructured. It does not delegate the Recognizes
|
|
// check, only ObjectKinds.
|
|
func NewUnstructuredObjectTyper(groupResources []*APIGroupResources, typers ...runtime.ObjectTyper) *UnstructuredObjectTyper {
|
|
dot := &UnstructuredObjectTyper{
|
|
registered: make(map[schema.GroupVersionKind]bool),
|
|
typers: typers,
|
|
}
|
|
for _, group := range groupResources {
|
|
for _, discoveryVersion := range group.Group.Versions {
|
|
resources, ok := group.VersionedResources[discoveryVersion.Version]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
gv := schema.GroupVersion{Group: group.Group.Name, Version: discoveryVersion.Version}
|
|
for _, resource := range resources {
|
|
dot.registered[gv.WithKind(resource.Kind)] = true
|
|
}
|
|
}
|
|
}
|
|
return dot
|
|
}
|
|
|
|
// ObjectKinds returns a slice of one element with the group,version,kind of the
|
|
// provided object, or an error if the object is not runtime.Unstructured or
|
|
// has no group,version,kind information. unversionedType will always be false
|
|
// because runtime.Unstructured object should always have group,version,kind
|
|
// information set.
|
|
func (d *UnstructuredObjectTyper) ObjectKinds(obj runtime.Object) (gvks []schema.GroupVersionKind, unversionedType bool, err error) {
|
|
if _, ok := obj.(runtime.Unstructured); ok {
|
|
gvk := obj.GetObjectKind().GroupVersionKind()
|
|
if len(gvk.Kind) == 0 {
|
|
return nil, false, runtime.NewMissingKindErr("object has no kind field ")
|
|
}
|
|
if len(gvk.Version) == 0 {
|
|
return nil, false, runtime.NewMissingVersionErr("object has no apiVersion field")
|
|
}
|
|
return []schema.GroupVersionKind{gvk}, false, nil
|
|
}
|
|
var lastErr error
|
|
for _, typer := range d.typers {
|
|
gvks, unversioned, err := typer.ObjectKinds(obj)
|
|
if err != nil {
|
|
lastErr = err
|
|
continue
|
|
}
|
|
return gvks, unversioned, nil
|
|
}
|
|
if lastErr == nil {
|
|
lastErr = runtime.NewNotRegisteredErrForType(reflect.TypeOf(obj))
|
|
}
|
|
return nil, false, lastErr
|
|
}
|
|
|
|
// Recognizes returns true if the provided group,version,kind was in the
|
|
// discovery information.
|
|
func (d *UnstructuredObjectTyper) Recognizes(gvk schema.GroupVersionKind) bool {
|
|
return d.registered[gvk]
|
|
}
|
|
|
|
var _ runtime.ObjectTyper = &UnstructuredObjectTyper{}
|