1 /* 2 Copyright 2014 The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package v1 18 19 import ( 20 "k8s.io/apimachinery/pkg/runtime" 21 "k8s.io/apimachinery/pkg/runtime/schema" 22 ) 23 24 // SchemeGroupVersion is group version used to register these objects 25 // TODO this should be in the "kubeconfig" group 26 var SchemeGroupVersion = schema.GroupVersion{Group: "", Version: "v1"} 27 28 var ( 29 // TODO: move SchemeBuilder with zz_generated.deepcopy.go to k8s.io/api. 30 // localSchemeBuilder and AddToScheme will stay in k8s.io/kubernetes. 31 SchemeBuilder runtime.SchemeBuilder 32 localSchemeBuilder = &SchemeBuilder 33 AddToScheme = localSchemeBuilder.AddToScheme 34 ) 35 36 func init() { 37 // We only register manually written functions here. The registration of the 38 // generated functions takes place in the generated files. The separation 39 // makes the code compile even when the generated files are missing. 40 localSchemeBuilder.Register(addKnownTypes, addDefaultingFuncs) 41 } 42 43 func addKnownTypes(scheme *runtime.Scheme) error { 44 scheme.AddKnownTypes(SchemeGroupVersion, 45 &Config{}, 46 ) 47 return nil 48 } 49 50 func (obj *Config) GetObjectKind() schema.ObjectKind { return obj } 51 func (obj *Config) SetGroupVersionKind(gvk schema.GroupVersionKind) { 52 obj.APIVersion, obj.Kind = gvk.ToAPIVersionAndKind() 53 } 54 func (obj *Config) GroupVersionKind() schema.GroupVersionKind { 55 return schema.FromAPIVersionAndKind(obj.APIVersion, obj.Kind) 56 } 57