event

package
v0.18.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 23, 2024 License: Apache-2.0 Imports: 1 Imported by: 2,553

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[T any] struct {
	// Object is the object from the event
	Object T
}

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[T any] struct {
	// Object is the object from the event
	Object T

	// 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[T any] struct {
	// Object is the object from the event
	Object T
}

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[T any] struct {
	// ObjectOld is the object from the event
	ObjectOld T

	// ObjectNew is the object from the event
	ObjectNew T
}

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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL