Documentation ¶
Overview ¶
Package event contains the definitions for the Event types produced by source.Sources and transformed into reconcile.Requests by handler.EventHandler.
You should rarely need to work with these directly -- instead, use Controller.Watch with source.Sources and handler.EventHandlers.
Events generally contain both a full runtime.Object that caused the event, as well as a direct handle to that object's metadata. This saves a lot of typecasting in code that works with Events.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateEvent ¶
type CreateEvent = TypedCreateEvent[client.Object]
CreateEvent is an event where a Kubernetes object was created. CreateEvent should be generated by a source.Source and transformed into a reconcile.Request by a handler.EventHandler.
type DeleteEvent ¶
type DeleteEvent = TypedDeleteEvent[client.Object]
DeleteEvent is an event where a Kubernetes object was deleted. DeleteEvent should be generated by a source.Source and transformed into a reconcile.Request by an handler.EventHandler.
type GenericEvent ¶
type GenericEvent = TypedGenericEvent[client.Object]
GenericEvent is an event where the operation type is unknown (e.g. polling or event originating outside the cluster). GenericEvent should be generated by a source.Source and transformed into a reconcile.Request by an handler.EventHandler.
type TypedCreateEvent ¶ added in v0.18.0
type TypedCreateEvent[object any] struct { // Object is the object from the event Object object }
TypedCreateEvent is an event where a Kubernetes object was created. TypedCreateEvent should be generated by a source.Source and transformed into a reconcile.Request by an handler.TypedEventHandler.
type TypedDeleteEvent ¶ added in v0.18.0
type TypedDeleteEvent[object any] struct { // Object is the object from the event Object object // DeleteStateUnknown is true if the Delete event was missed but we identified the object // as having been deleted. DeleteStateUnknown bool }
TypedDeleteEvent is an event where a Kubernetes object was deleted. TypedDeleteEvent should be generated by a source.Source and transformed into a reconcile.Request by an handler.TypedEventHandler.
type TypedGenericEvent ¶ added in v0.18.0
type TypedGenericEvent[object any] struct { // Object is the object from the event Object object }
TypedGenericEvent is an event where the operation type is unknown (e.g. polling or event originating outside the cluster). TypedGenericEvent should be generated by a source.Source and transformed into a reconcile.Request by an handler.TypedEventHandler.
type TypedUpdateEvent ¶ added in v0.18.0
type TypedUpdateEvent[object any] struct { // ObjectOld is the object from the event ObjectOld object // ObjectNew is the object from the event ObjectNew object }
TypedUpdateEvent is an event where a Kubernetes object was updated. TypedUpdateEvent should be generated by a source.Source and transformed into a reconcile.Request by an handler.TypedEventHandler.
type UpdateEvent ¶
type UpdateEvent = TypedUpdateEvent[client.Object]
UpdateEvent is an event where a Kubernetes object was updated. UpdateEvent should be generated by a source.Source and transformed into a reconcile.Request by an handler.EventHandler.