k3s/vendor/k8s.io/kube-scheduler/config/v1/register.go

46 lines
1.5 KiB
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
/*
Copyright 2014 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.
*/
2019-12-12 01:27:03 +00:00
package v1
2019-01-12 04:58:27 +00:00
import (
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/runtime/schema"
)
2019-12-12 01:27:03 +00:00
// GroupName is the group name used in this package
const GroupName = "kubescheduler.config.k8s.io"
2019-01-12 04:58:27 +00:00
// SchemeGroupVersion is group version used to register these objects
2019-12-12 01:27:03 +00:00
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1"}
2019-01-12 04:58:27 +00:00
var (
2019-12-12 01:27:03 +00:00
// SchemeBuilder is the scheme builder with scheme init functions to run for this API package
2019-01-12 04:58:27 +00:00
SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
2019-12-12 01:27:03 +00:00
// AddToScheme is a global function that registers this API group & version to a scheme
2019-01-12 04:58:27 +00:00
AddToScheme = SchemeBuilder.AddToScheme
)
2019-12-12 01:27:03 +00:00
// addKnownTypes registers known types to the given scheme
2019-01-12 04:58:27 +00:00
func addKnownTypes(scheme *runtime.Scheme) error {
scheme.AddKnownTypes(SchemeGroupVersion,
&Policy{},
)
2019-12-12 01:27:03 +00:00
// also register into the v1 group for API backward compatibility
scheme.AddKnownTypes(schema.GroupVersion{Group: "", Version: "v1"}, &Policy{})
2019-01-12 04:58:27 +00:00
return nil
}