Documentation ¶
Index ¶
- Constants
- func Add(mgr manager.Manager, args AddArgs) error
- func DefaultPredicates(typeName string, ignoreOperationAnnotation bool) []predicate.Predicate
- func NewReconciler(mgr manager.Manager, actuator Actuator) reconcile.Reconciler
- func SecretToBackupBucketMapper(predicates []predicate.Predicate) handler.Mapper
- type Actuator
- type AddArgs
Constants ¶
View Source
const ( // FinalizerName is the backupbucket controller finalizer. FinalizerName = "extensions.gardener.cloud/backupbucket" // ControllerName is the name of the controller ControllerName = "backupbucket_controller" )
View Source
const ( // EventBackupBucketReconciliation an event reason to describe backup entry reconciliation. EventBackupBucketReconciliation string = "BackupBucketReconciliation" // EventBackupBucketDeletion an event reason to describe backup entry deletion. EventBackupBucketDeletion string = "BackupBucketDeletion" )
Variables ¶
This section is empty.
Functions ¶
func Add ¶
Add creates a new BackupBucket Controller and adds it to the Manager. and Start it when the Manager is Started.
func DefaultPredicates ¶
DefaultPredicates returns the default predicates for a controlplane reconciler.
func NewReconciler ¶
func NewReconciler(mgr manager.Manager, actuator Actuator) reconcile.Reconciler
NewReconciler creates a new reconcile.Reconciler that reconciles backupbucket resources of Gardener's `extensions.gardener.cloud` API group.
Types ¶
type Actuator ¶
type Actuator interface { // Reconcile reconciles the BackupBucket. Reconcile(context.Context, *extensionsv1alpha1.BackupBucket) error // Delete deletes the BackupBucket. Delete(context.Context, *extensionsv1alpha1.BackupBucket) error }
Actuator acts upon BackupBucket resources.
type AddArgs ¶
type AddArgs struct { // Actuator is a BackupBucket actuator. Actuator Actuator // ControllerOptions are the controller options used for creating a controller. // The options.Reconciler is always overridden with a reconciler created from the // given actuator. ControllerOptions controller.Options // Predicates are the predicates to use. // If unset, GenerationChanged will be used. Predicates []predicate.Predicate }
AddArgs are arguments for adding a BackupBucket controller to a manager.
Click to show internal directories.
Click to hide internal directories.