Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsBackupEntryManagedByThisGardenlet ¶ added in v1.40.0
func IsBackupEntryManagedByThisGardenlet(backupEntry *gardencorev1beta1.BackupEntry, gc *config.GardenletConfiguration) bool
IsBackupEntryManagedByThisGardenlet checks if the given BackupEntry is managed by this gardenlet by comparing it with the seed name from the GardenletConfiguration.
Types ¶
type Actuator ¶
type Actuator interface {
// Reconcile reconciles the BackupEntry.
Reconcile(context.Context) error
// Delete deletes the BackupEntry.
Delete(context.Context) error
// Migrate migrates the BackupEntry.
Migrate(context.Context) error
}
Actuator acts upon BackupEntry resources.
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller controls BackupEntries.
func NewBackupEntryController ¶
func NewBackupEntryController(ctx context.Context, clientMap clientmap.ClientMap, config *config.GardenletConfiguration, recorder record.EventRecorder) (*Controller, error)
NewBackupEntryController takes a Kubernetes client for the Garden clusters <k8sGardenClient>, a struct holding information about the acting Gardener, a <backupEntryInformer>, and a <recorder> for event recording. It creates a new Gardener controller.
Click to show internal directories.
Click to hide internal directories.