Documentation ¶
Overview ¶
Copyright 2022 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.
Index ¶
- type MemoryStorage
- func (s *MemoryStorage) AddObject(obj *unstructured.Unstructured) error
- func (s *MemoryStorage) AddStorageHook(hook storage.Hook)
- func (s *MemoryStorage) AllResources() []metav1.APIResource
- func (s *MemoryStorage) FindResource(gr schema.GroupResource) storage.ResourceInfo
- func (s *MemoryStorage) RegisterType(gvk schema.GroupVersionKind, resource string, scope meta.RESTScope)
- func (s *MemoryStorage) UpdateCRD(ev *storage.WatchEvent) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MemoryStorage ¶
type MemoryStorage struct {
// contains filtered or unexported fields
}
func NewMemoryStorage ¶
func NewMemoryStorage(clock storage.Clock, uidGenerator storage.UIDGenerator) (*MemoryStorage, error)
func (*MemoryStorage) AddObject ¶
func (s *MemoryStorage) AddObject(obj *unstructured.Unstructured) error
AddObject pre-creates an object
func (*MemoryStorage) AddStorageHook ¶
func (s *MemoryStorage) AddStorageHook(hook storage.Hook)
func (*MemoryStorage) AllResources ¶
func (s *MemoryStorage) AllResources() []metav1.APIResource
func (*MemoryStorage) FindResource ¶
func (s *MemoryStorage) FindResource(gr schema.GroupResource) storage.ResourceInfo
func (*MemoryStorage) RegisterType ¶
func (s *MemoryStorage) RegisterType(gvk schema.GroupVersionKind, resource string, scope meta.RESTScope)
RegisterType registers a type with the schema for the mock kubeapiserver
func (*MemoryStorage) UpdateCRD ¶
func (s *MemoryStorage) UpdateCRD(ev *storage.WatchEvent) error
UpdateCRD is called whenever a CRD is updated. We register the types from the CRD.