123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- Copyright 2018 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 rest
- import (
- auditv1alpha1 "k8s.io/api/auditregistration/v1alpha1"
- "k8s.io/apiserver/pkg/registry/generic"
- "k8s.io/apiserver/pkg/registry/rest"
- genericapiserver "k8s.io/apiserver/pkg/server"
- serverstorage "k8s.io/apiserver/pkg/server/storage"
- "k8s.io/kubernetes/pkg/api/legacyscheme"
- auditstorage "k8s.io/kubernetes/pkg/registry/auditregistration/auditsink/storage"
- )
- // RESTStorageProvider is a REST storage provider for audit.k8s.io
- type RESTStorageProvider struct{}
- // NewRESTStorage returns a RESTStorageProvider
- func (p RESTStorageProvider) NewRESTStorage(apiResourceConfigSource serverstorage.APIResourceConfigSource, restOptionsGetter generic.RESTOptionsGetter) (genericapiserver.APIGroupInfo, bool) {
- apiGroupInfo := genericapiserver.NewDefaultAPIGroupInfo(auditv1alpha1.GroupName, legacyscheme.Scheme, legacyscheme.ParameterCodec, legacyscheme.Codecs)
- if apiResourceConfigSource.VersionEnabled(auditv1alpha1.SchemeGroupVersion) {
- apiGroupInfo.VersionedResourcesStorageMap[auditv1alpha1.SchemeGroupVersion.Version] = p.v1alpha1Storage(apiResourceConfigSource, restOptionsGetter)
- }
- return apiGroupInfo, true
- }
- func (p RESTStorageProvider) v1alpha1Storage(apiResourceConfigSource serverstorage.APIResourceConfigSource, restOptionsGetter generic.RESTOptionsGetter) map[string]rest.Storage {
- storage := map[string]rest.Storage{}
- s := auditstorage.NewREST(restOptionsGetter)
- storage["auditsinks"] = s
- return storage
- }
- // GroupName is the group name for the storage provider
- func (p RESTStorageProvider) GroupName() string {
- return auditv1alpha1.GroupName
- }
|