Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CacheEntry ¶
type CacheEntry struct { Key string Namespace string Triggers []trigger.ObjectFieldTrigger }
type ImageReactor ¶
type ImageReactor interface {
ImageChanged(obj runtime.Object, tagRetriever TagRetriever) error
}
type Indexer ¶
type Indexer interface { // Index takes the given pair of objects and turns it into a key and a value. The returned key // will be used to store the object. obj is set on adds and updates, old is set on deletes and updates. // Changed should be true if the triggers changed. Operations is a list of actions that should be sent // to the reaction. Index(obj, old interface{}) (key string, entry *CacheEntry, change cache.DeltaType, err error) }
Click to show internal directories.
Click to hide internal directories.