2019-01-12 04:58:27 +00:00
|
|
|
/*
|
|
|
|
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 conversion
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions"
|
|
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
|
|
"k8s.io/apiserver/pkg/util/webhook"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CRConverterFactory is the factory for all CR converters.
|
|
|
|
type CRConverterFactory struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewCRConverterFactory creates a new CRConverterFactory
|
|
|
|
func NewCRConverterFactory(serviceResolver webhook.ServiceResolver, authResolverWrapper webhook.AuthenticationInfoResolverWrapper) (*CRConverterFactory, error) {
|
|
|
|
converterFactory := &CRConverterFactory{}
|
|
|
|
return converterFactory, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewConverter returns a new CR converter based on the conversion settings in crd object.
|
|
|
|
func (m *CRConverterFactory) NewConverter(crd *apiextensions.CustomResourceDefinition) (safe, unsafe runtime.ObjectConvertor, err error) {
|
|
|
|
validVersions := map[schema.GroupVersion]bool{}
|
|
|
|
for _, version := range crd.Spec.Versions {
|
|
|
|
validVersions[schema.GroupVersion{Group: crd.Spec.Group, Version: version.Name}] = true
|
|
|
|
}
|
|
|
|
|
2019-04-07 17:07:55 +00:00
|
|
|
var converter crConverterInterface
|
2019-01-12 04:58:27 +00:00
|
|
|
switch crd.Spec.Conversion.Strategy {
|
|
|
|
case apiextensions.NoneConverter:
|
2019-04-07 17:07:55 +00:00
|
|
|
converter = &nopConverter{}
|
2019-01-12 04:58:27 +00:00
|
|
|
case apiextensions.WebhookConverter:
|
|
|
|
return nil, nil, fmt.Errorf("webhook conversion is disabled on this cluster")
|
2019-04-07 17:07:55 +00:00
|
|
|
default:
|
|
|
|
return nil, nil, fmt.Errorf("unknown conversion strategy %q for CRD %s", crd.Spec.Conversion.Strategy, crd.Name)
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
2019-04-07 17:07:55 +00:00
|
|
|
unsafe = &crConverter{
|
|
|
|
validVersions: validVersions,
|
|
|
|
clusterScoped: crd.Spec.Scope == apiextensions.ClusterScoped,
|
|
|
|
converter: converter,
|
|
|
|
}
|
|
|
|
return &safeConverterWrapper{unsafe}, unsafe, nil
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 17:07:55 +00:00
|
|
|
// crConverterInterface is the interface all cr converters must implement
|
|
|
|
type crConverterInterface interface {
|
|
|
|
// Convert converts in object to the given gvk and returns the converted object.
|
|
|
|
// Note that the function may mutate in object and return it. A safe wrapper will make sure
|
|
|
|
// a safe converter will be returned.
|
|
|
|
Convert(in runtime.Object, targetGVK schema.GroupVersion) (runtime.Object, error)
|
|
|
|
}
|
2019-01-12 04:58:27 +00:00
|
|
|
|
2019-04-07 17:07:55 +00:00
|
|
|
// crConverter extends the delegate converter with generic CR conversion behaviour. The delegate will implement the
|
2019-01-12 04:58:27 +00:00
|
|
|
// user defined conversion strategy given in the CustomResourceDefinition.
|
|
|
|
type crConverter struct {
|
2019-04-07 17:07:55 +00:00
|
|
|
converter crConverterInterface
|
|
|
|
validVersions map[schema.GroupVersion]bool
|
2019-01-12 04:58:27 +00:00
|
|
|
clusterScoped bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *crConverter) ConvertFieldLabel(gvk schema.GroupVersionKind, label, value string) (string, string, error) {
|
|
|
|
// We currently only support metadata.namespace and metadata.name.
|
|
|
|
switch {
|
|
|
|
case label == "metadata.name":
|
|
|
|
return label, value, nil
|
|
|
|
case !c.clusterScoped && label == "metadata.namespace":
|
|
|
|
return label, value, nil
|
|
|
|
default:
|
|
|
|
return "", "", fmt.Errorf("field label not supported: %s", label)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *crConverter) Convert(in, out, context interface{}) error {
|
2019-04-07 17:07:55 +00:00
|
|
|
unstructIn, ok := in.(*unstructured.Unstructured)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("input type %T in not valid for unstructured conversion", in)
|
|
|
|
}
|
|
|
|
|
|
|
|
unstructOut, ok := out.(*unstructured.Unstructured)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("output type %T in not valid for unstructured conversion", out)
|
|
|
|
}
|
|
|
|
|
|
|
|
outGVK := unstructOut.GroupVersionKind()
|
|
|
|
converted, err := c.ConvertToVersion(unstructIn, outGVK.GroupVersion())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
unstructuredConverted, ok := converted.(runtime.Unstructured)
|
|
|
|
if !ok {
|
|
|
|
// this should not happened
|
|
|
|
return fmt.Errorf("CR conversion failed")
|
|
|
|
}
|
|
|
|
unstructOut.SetUnstructuredContent(unstructuredConverted.UnstructuredContent())
|
|
|
|
return nil
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ConvertToVersion converts in object to the given gvk in place and returns the same `in` object.
|
2019-04-07 17:07:55 +00:00
|
|
|
// The in object can be a single object or a UnstructuredList. CRD storage implementation creates an
|
|
|
|
// UnstructuredList with the request's GV, populates it from storage, then calls conversion to convert
|
|
|
|
// the individual items. This function assumes it never gets a v1.List.
|
2019-01-12 04:58:27 +00:00
|
|
|
func (c *crConverter) ConvertToVersion(in runtime.Object, target runtime.GroupVersioner) (runtime.Object, error) {
|
2019-04-07 17:07:55 +00:00
|
|
|
fromGVK := in.GetObjectKind().GroupVersionKind()
|
|
|
|
toGVK, ok := target.KindForGroupVersionKinds([]schema.GroupVersionKind{fromGVK})
|
|
|
|
if !ok {
|
|
|
|
// TODO: should this be a typed error?
|
|
|
|
return nil, fmt.Errorf("%v is unstructured and is not suitable for converting to %q", fromGVK.String(), target)
|
|
|
|
}
|
|
|
|
if !c.validVersions[toGVK.GroupVersion()] {
|
|
|
|
return nil, fmt.Errorf("request to convert CR to an invalid group/version: %s", toGVK.GroupVersion().String())
|
|
|
|
}
|
|
|
|
// Note that even if the request is for a list, the GV of the request UnstructuredList is what
|
|
|
|
// is expected to convert to. As mentioned in the function's document, it is not expected to
|
|
|
|
// get a v1.List.
|
|
|
|
if !c.validVersions[fromGVK.GroupVersion()] {
|
|
|
|
return nil, fmt.Errorf("request to convert CR from an invalid group/version: %s", fromGVK.GroupVersion().String())
|
|
|
|
}
|
|
|
|
// Check list item's apiVersion
|
2019-01-12 04:58:27 +00:00
|
|
|
if list, ok := in.(*unstructured.UnstructuredList); ok {
|
|
|
|
for i := range list.Items {
|
2019-04-07 17:07:55 +00:00
|
|
|
expectedGV := list.Items[i].GroupVersionKind().GroupVersion()
|
|
|
|
if !c.validVersions[expectedGV] {
|
|
|
|
return nil, fmt.Errorf("request to convert CR list failed, list index %d has invalid group/version: %s", i, expectedGV.String())
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-07 17:07:55 +00:00
|
|
|
return c.converter.Convert(in, toGVK.GroupVersion())
|
2019-01-12 04:58:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// safeConverterWrapper is a wrapper over an unsafe object converter that makes copy of the input and then delegate to the unsafe converter.
|
|
|
|
type safeConverterWrapper struct {
|
|
|
|
unsafe runtime.ObjectConvertor
|
|
|
|
}
|
|
|
|
|
2019-04-07 17:07:55 +00:00
|
|
|
var _ runtime.ObjectConvertor = &safeConverterWrapper{}
|
2019-01-12 04:58:27 +00:00
|
|
|
|
|
|
|
// ConvertFieldLabel delegate the call to the unsafe converter.
|
|
|
|
func (c *safeConverterWrapper) ConvertFieldLabel(gvk schema.GroupVersionKind, label, value string) (string, string, error) {
|
|
|
|
return c.unsafe.ConvertFieldLabel(gvk, label, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert makes a copy of in object and then delegate the call to the unsafe converter.
|
|
|
|
func (c *safeConverterWrapper) Convert(in, out, context interface{}) error {
|
|
|
|
inObject, ok := in.(runtime.Object)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("input type %T in not valid for object conversion", in)
|
|
|
|
}
|
|
|
|
return c.unsafe.Convert(inObject.DeepCopyObject(), out, context)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConvertToVersion makes a copy of in object and then delegate the call to the unsafe converter.
|
|
|
|
func (c *safeConverterWrapper) ConvertToVersion(in runtime.Object, target runtime.GroupVersioner) (runtime.Object, error) {
|
|
|
|
return c.unsafe.ConvertToVersion(in.DeepCopyObject(), target)
|
|
|
|
}
|