mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 18:43:34 +00:00
54 lines
1.7 KiB
Go
54 lines
1.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 apiserver
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
const LegacyGroupName = "apiserver.k8s.io"
|
|
const GroupName = "apiserver.config.k8s.io"
|
|
|
|
// LegacySchemeGroupVersion is group version used to register these objects
|
|
var LegacySchemeGroupVersion = schema.GroupVersion{Group: LegacyGroupName, Version: runtime.APIVersionInternal}
|
|
|
|
// SchemeGroupVersion is group version used to register these objects
|
|
var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: runtime.APIVersionInternal}
|
|
|
|
var (
|
|
SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
|
|
AddToScheme = SchemeBuilder.AddToScheme
|
|
)
|
|
|
|
// Adds the list of known types to the given scheme.
|
|
func addKnownTypes(scheme *runtime.Scheme) error {
|
|
scheme.AddKnownTypes(LegacySchemeGroupVersion,
|
|
&AdmissionConfiguration{},
|
|
&EgressSelectorConfiguration{},
|
|
)
|
|
scheme.AddKnownTypes(SchemeGroupVersion,
|
|
&AdmissionConfiguration{},
|
|
&AuthenticationConfiguration{},
|
|
&AuthorizationConfiguration{},
|
|
&EncryptionConfiguration{},
|
|
&EgressSelectorConfiguration{},
|
|
&TracingConfiguration{},
|
|
)
|
|
return nil
|
|
}
|