predicate

package
v1.5.1 Latest Latest
Warning

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

Go to latest
Published: May 27, 2020 License: Apache-2.0, BSD-2-Clause, MIT, + 1 more Imports: 16 Imported by: 33

Documentation

Index

Constants

This section is empty.

Variables

Log is the logger for predicates.

Functions

func AddTypePredicate

func AddTypePredicate(predicates []predicate.Predicate, extensionTypes ...string) []predicate.Predicate

AddTypePredicate returns a new slice which contains a type predicate and the given `predicates`. if more than one extensionTypes is given all given types are or combined

func ClusterShootKubernetesVersionAtLeast

func ClusterShootKubernetesVersionAtLeast(decoder runtime.Decoder, kubernetesVersion string) predicate.Predicate

ClusterShootKubernetesVersionAtLeast is a predicate for the kubernetes version of the shoot in the cluster resource.

func ClusterShootProviderType

func ClusterShootProviderType(decoder runtime.Decoder, providerType string) predicate.Predicate

ClusterShootProviderType is a predicate for the provider type of the shoot in the cluster resource.

func EvalGeneric

func EvalGeneric(obj runtime.Object, predicates ...predicate.Predicate) bool

EvalGeneric returns true if all predicates match for the given object.

func FromMapper

func FromMapper(mapper Mapper, triggers ...MapperTrigger) predicate.Predicate

FromMapper creates a new predicate from the given Mapper that reacts on the given MapperTriggers.

func GardenCoreProviderType added in v1.4.0

func GardenCoreProviderType(providerType string) predicate.Predicate

GardenCoreProviderType is a predicate for the provider type of a `gardencore.Object` implementation.

func HasName

func HasName(name string) predicate.Predicate

HasName returns a predicate that matches the given name of a resource.

func HasOperationAnnotation

func HasOperationAnnotation() predicate.Predicate

HasOperationAnnotation is a predicate for the operation annotation.

func HasPurpose

func HasPurpose(purpose extensionsv1alpha1.Purpose) predicate.Predicate

HasPurpose filters the incoming Controlplanes for the given spec.purpose

func HasType

func HasType(typeName string) predicate.Predicate

HasType filters the incoming OperatingSystemConfigs for ones that have the same type as the given type.

func IsDeleting

func IsDeleting() predicate.Predicate

IsDeleting is a predicate for objects having a deletion timestamp.

func LastOperationNotSuccessful

func LastOperationNotSuccessful() predicate.Predicate

LastOperationNotSuccessful is a predicate for unsuccessful last operations for creation events.

func Or

func Or(predicates ...predicate.Predicate) predicate.Predicate

Or builds a logical OR gate of passed predicates.

func ShootNotFailed

func ShootNotFailed() predicate.Predicate

ShootNotFailed is a predicate for failed shoots.

Types

type Mapper

type Mapper interface {
	Map(event event.GenericEvent) bool
}

Mapper maps any event (in form of a GenericEvent) to a boolean whether the event shall be propagated or not.

type MapperFunc

type MapperFunc func(event.GenericEvent) bool

MapperFunc is a function that implements Mapper.

func (MapperFunc) Map

func (f MapperFunc) Map(event event.GenericEvent) bool

Map implements Mapper.

type MapperTrigger

type MapperTrigger uint8

MapperTrigger is a trigger a Mapper can react upon.

const (
	// CreateTrigger is a MapperTrigger for create events.
	CreateTrigger MapperTrigger = iota
	// UpdateOldTrigger is a MapperTrigger for update events with the old meta and object.
	UpdateOldTrigger
	// UpdateNewTrigger is a MapperTrigger for update events with the new meta and object.
	UpdateNewTrigger
	// DeleteTrigger is a MapperTrigger for delete events.
	DeleteTrigger
	// GenericTrigger is a MapperTrigger for generic events.
	GenericTrigger
)

Jump to

Keyboard shortcuts

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