mirror of
https://github.com/kubernetes/sample-controller.git
synced 2025-03-31 03:18:45 +08:00

Automatic merge from submit-queue (batch tested with PRs 59158, 38320, 59059, 55516, 59357). 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>. Promote v1alpha1 meta to v1beta1 No code changes, just renames. We can discuss if there are any field / naming changes here or in a follow-up Parent #58536 Fixes #53224 Prereq to #55637 @kubernetes/sig-api-machinery-pr-reviews @deads2k ```release-note The `meta.k8s.io/v1alpha1` objects for retrieving tabular responses from the server (`Table`) or fetching just the `ObjectMeta` for an object (as `PartialObjectMetadata`) are now beta as part of `meta.k8s.io/v1beta1`. Clients may request alternate representations of normal Kubernetes objects by passing an `Accept` header like `application/json;as=Table;g=meta.k8s.io;v=v1beta1` or `application/json;as=PartialObjectMetadata;g=meta.k8s.io;v1=v1beta1`. Older servers will ignore this representation or return an error if it is not available. Clients may request fallback to the normal object by adding a non-qualified mime-type to their `Accept` header like `application/json` - the server will then respond with either the alternate representation if it is supported or the fallback mime-type which is the normal object response. ``` Kubernetes-commit: 9ee71b720ed2300d6298bb936d0a7873b5ecf2ac
106 lines
3.7 KiB
Go
106 lines
3.7 KiB
Go
/*
|
|
Copyright 2017 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 internalversion
|
|
|
|
import (
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
metav1beta1 "k8s.io/apimachinery/pkg/apis/meta/v1beta1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
"k8s.io/apimachinery/pkg/runtime/serializer"
|
|
)
|
|
|
|
// GroupName is the group name for this API.
|
|
const GroupName = "meta.k8s.io"
|
|
|
|
// Scheme is the registry for any type that adheres to the meta API spec.
|
|
var scheme = runtime.NewScheme()
|
|
|
|
var (
|
|
// TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api.
|
|
// localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes.
|
|
SchemeBuilder runtime.SchemeBuilder
|
|
localSchemeBuilder = &SchemeBuilder
|
|
AddToScheme = localSchemeBuilder.AddToScheme
|
|
)
|
|
|
|
// Codecs provides access to encoding and decoding for the scheme.
|
|
var Codecs = serializer.NewCodecFactory(scheme)
|
|
|
|
// SchemeGroupVersion is group version used to register these objects
|
|
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
|
|
|
|
// ParameterCodec handles versioning of objects that are converted to query parameters.
|
|
var ParameterCodec = runtime.NewParameterCodec(scheme)
|
|
|
|
// Kind takes an unqualified kind and returns a Group qualified GroupKind
|
|
func Kind(kind string) schema.GroupKind {
|
|
return SchemeGroupVersion.WithKind(kind).GroupKind()
|
|
}
|
|
|
|
// addToGroupVersion registers common meta types into schemas.
|
|
func addToGroupVersion(scheme *runtime.Scheme, groupVersion schema.GroupVersion) error {
|
|
if err := scheme.AddIgnoredConversionType(&metav1.TypeMeta{}, &metav1.TypeMeta{}); err != nil {
|
|
return err
|
|
}
|
|
scheme.AddConversionFuncs(
|
|
metav1.Convert_string_To_labels_Selector,
|
|
metav1.Convert_labels_Selector_To_string,
|
|
|
|
metav1.Convert_string_To_fields_Selector,
|
|
metav1.Convert_fields_Selector_To_string,
|
|
|
|
Convert_map_to_v1_LabelSelector,
|
|
Convert_v1_LabelSelector_to_map,
|
|
|
|
Convert_internalversion_ListOptions_To_v1_ListOptions,
|
|
Convert_v1_ListOptions_To_internalversion_ListOptions,
|
|
)
|
|
// ListOptions is the only options struct which needs conversion (it exposes labels and fields
|
|
// as selectors for convenience). The other types have only a single representation today.
|
|
scheme.AddKnownTypes(SchemeGroupVersion,
|
|
&ListOptions{},
|
|
&metav1.GetOptions{},
|
|
&metav1.ExportOptions{},
|
|
&metav1.DeleteOptions{},
|
|
)
|
|
scheme.AddKnownTypes(SchemeGroupVersion,
|
|
&metav1beta1.Table{},
|
|
&metav1beta1.TableOptions{},
|
|
&metav1beta1.PartialObjectMetadata{},
|
|
&metav1beta1.PartialObjectMetadataList{},
|
|
)
|
|
scheme.AddKnownTypes(metav1beta1.SchemeGroupVersion,
|
|
&metav1beta1.Table{},
|
|
&metav1beta1.TableOptions{},
|
|
&metav1beta1.PartialObjectMetadata{},
|
|
&metav1beta1.PartialObjectMetadataList{},
|
|
)
|
|
// Allow delete options to be decoded across all version in this scheme (we may want to be more clever than this)
|
|
scheme.AddUnversionedTypes(SchemeGroupVersion, &metav1.DeleteOptions{})
|
|
metav1.AddToGroupVersion(scheme, metav1.SchemeGroupVersion)
|
|
return nil
|
|
}
|
|
|
|
// Unlike other API groups, meta internal knows about all meta external versions, but keeps
|
|
// the logic for conversion private.
|
|
func init() {
|
|
if err := addToGroupVersion(scheme, SchemeGroupVersion); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|