12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /*
- 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, error) {
- apiGroupInfo := genericapiserver.NewDefaultAPIGroupInfo(auditv1alpha1.GroupName, legacyscheme.Scheme, legacyscheme.ParameterCodec, legacyscheme.Codecs)
- if apiResourceConfigSource.VersionEnabled(auditv1alpha1.SchemeGroupVersion) {
- if storageMap, err := p.v1alpha1Storage(apiResourceConfigSource, restOptionsGetter); err != nil {
- return genericapiserver.APIGroupInfo{}, false, err
- } else {
- apiGroupInfo.VersionedResourcesStorageMap[auditv1alpha1.SchemeGroupVersion.Version] = storageMap
- }
- }
- return apiGroupInfo, true, nil
- }
- func (p RESTStorageProvider) v1alpha1Storage(apiResourceConfigSource serverstorage.APIResourceConfigSource, restOptionsGetter generic.RESTOptionsGetter) (map[string]rest.Storage, error) {
- storage := map[string]rest.Storage{}
- s, err := auditstorage.NewREST(restOptionsGetter)
- storage["auditsinks"] = s
- return storage, err
- }
- // GroupName is the group name for the storage provider
- func (p RESTStorageProvider) GroupName() string {
- return auditv1alpha1.GroupName
- }
|