const maxLimit …
type authenticatedDataString …
func (d authenticatedDataString) AuthenticatedData() []byte { … }
var _ …
type store …
func (s *store) RequestWatchProgress(ctx context.Context) error { … }
type objState …
func New(c *kubernetes.Client, codec runtime.Codec, newFunc, newListFunc func() runtime.Object, prefix, resourcePrefix string, groupResource schema.GroupResource, transformer value.Transformer, leaseManagerConfig LeaseManagerConfig, decoder Decoder, versioner storage.Versioner) storage.Interface { … }
func newStore(c *kubernetes.Client, codec runtime.Codec, newFunc, newListFunc func() runtime.Object, prefix, resourcePrefix string, groupResource schema.GroupResource, transformer value.Transformer, leaseManagerConfig LeaseManagerConfig, decoder Decoder, versioner storage.Versioner) *store { … }
func (s *store) Versioner() storage.Versioner { … }
func (s *store) Get(ctx context.Context, key string, opts storage.GetOptions, out runtime.Object) error { … }
func (s *store) Create(ctx context.Context, key string, obj, out runtime.Object, ttl uint64) error { … }
func (s *store) Delete(
ctx context.Context, key string, out runtime.Object, preconditions *storage.Preconditions,
validateDeletion storage.ValidateObjectFunc, cachedExistingObject runtime.Object, opts storage.DeleteOptions) error { … }
func (s *store) conditionalDelete(
ctx context.Context, key string, out runtime.Object, v reflect.Value, preconditions *storage.Preconditions,
validateDeletion storage.ValidateObjectFunc, cachedExistingObject runtime.Object, skipTransformDecode bool) error { … }
func (s *store) GuaranteedUpdate(
ctx context.Context, key string, destination runtime.Object, ignoreNotFound bool,
preconditions *storage.Preconditions, tryUpdate storage.UpdateFunc, cachedExistingObject runtime.Object) error { … }
func getNewItemFunc(listObj runtime.Object, v reflect.Value) func() runtime.Object { … }
func (s *store) Count(key string) (int64, error) { … }
func (s *store) ReadinessCheck() error { … }
func (s *store) resolveGetListRev(continueKey string, continueRV int64, opts storage.ListOptions) (int64, error) { … }
func (s *store) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error { … }
func (s *store) getList(ctx context.Context, keyPrefix string, recursive bool, options kubernetes.ListOptions) (kubernetes.ListResponse, error) { … }
func growSlice(v reflect.Value, maxCapacity int, sizes ...int) { … }
func (s *store) Watch(ctx context.Context, key string, opts storage.ListOptions) (watch.Interface, error) { … }
func (s *store) watchContext(ctx context.Context) context.Context { … }
func (s *store) getCurrentState(ctx context.Context, key string, v reflect.Value, ignoreNotFound bool, skipTransformDecode bool) func() (*objState, error) { … }
func (s *store) getState(ctx context.Context, kv *mvccpb.KeyValue, key string, v reflect.Value, ignoreNotFound bool, skipTransformDecode bool) (*objState, error) { … }
func (s *store) getStateFromObject(obj runtime.Object) (*objState, error) { … }
func (s *store) updateState(st *objState, userUpdate storage.UpdateFunc) (runtime.Object, uint64, error) { … }
func (s *store) validateMinimumResourceVersion(minimumResourceVersion string, actualRevision uint64) error { … }
func (s *store) prepareKey(key string) (string, error) { … }
func recordDecodeError(resource string, key string) { … }
func getTypeName(obj interface{ … }