Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ContinueToken ¶
type ContinueToken *string
type SearchOptions ¶
type SearchOptions struct { ContinueFrom ContinueToken Limit int LabelSelector labels.Selector Namespace *string }
type SharedInformerCache ¶ added in v0.0.8
type SharedInformerCache struct {
// contains filtered or unexported fields
}
func NewSharedInformerCache ¶
func (*SharedInformerCache) Get ¶ added in v0.0.8
func (s *SharedInformerCache) Get(namespace, name string) (interface{}, error)
func (*SharedInformerCache) HasSynced ¶ added in v0.0.8
func (s *SharedInformerCache) HasSynced() bool
func (*SharedInformerCache) Search ¶ added in v0.0.8
func (s *SharedInformerCache) Search(opts *SearchOptions) ([]interface{}, ContinueToken, error)
type Store ¶
type Store interface { Get(namespace, name string) (interface{}, error) Search(*SearchOptions) ([]interface{}, ContinueToken, error) }
Click to show internal directories.
Click to hide internal directories.