k8s.io/kubernetes@v1.31.0-alpha.0.0.20240520171757-56147500dadc/pkg/apis/extensions/register.go (about) 1 /* 2 Copyright 2015 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 extensions 18 19 import ( 20 "k8s.io/apimachinery/pkg/runtime" 21 "k8s.io/apimachinery/pkg/runtime/schema" 22 "k8s.io/kubernetes/pkg/apis/apps" 23 "k8s.io/kubernetes/pkg/apis/autoscaling" 24 "k8s.io/kubernetes/pkg/apis/networking" 25 ) 26 27 // GroupName is the group name use in this package 28 const GroupName = "extensions" 29 30 // SchemeGroupVersion is group version used to register these objects 31 var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal} 32 33 // Kind takes an unqualified kind and returns a Group qualified GroupKind 34 func Kind(kind string) schema.GroupKind { 35 return SchemeGroupVersion.WithKind(kind).GroupKind() 36 } 37 38 // Resource takes an unqualified resource and returns a Group qualified GroupResource 39 func Resource(resource string) schema.GroupResource { 40 return SchemeGroupVersion.WithResource(resource).GroupResource() 41 } 42 43 // Builds new Scheme of known types 44 var ( 45 SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) 46 AddToScheme = SchemeBuilder.AddToScheme 47 ) 48 49 // Adds the list of known types to the given scheme. 50 func addKnownTypes(scheme *runtime.Scheme) error { 51 // TODO this gets cleaned up when the types are fixed 52 scheme.AddKnownTypes(SchemeGroupVersion, 53 &apps.Deployment{}, 54 &apps.DeploymentList{}, 55 &apps.DeploymentRollback{}, 56 &apps.DaemonSetList{}, 57 &apps.DaemonSet{}, 58 &networking.Ingress{}, 59 &networking.IngressList{}, 60 &apps.ReplicaSet{}, 61 &apps.ReplicaSetList{}, 62 &autoscaling.Scale{}, 63 &networking.NetworkPolicy{}, 64 &networking.NetworkPolicyList{}, 65 ) 66 return nil 67 }