Documentation ¶
Index ¶
Constants ¶
View Source
const (
// ControllerName is the name of this controller.
ControllerName = "backupbucket"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Actuator ¶
type Actuator interface { // Reconcile reconciles the BackupBucket. Reconcile(context.Context) error // Delete deletes the BackupBucket. Delete(context.Context) error }
Actuator acts upon BackupBucket resources.
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller controls BackupBuckets.
func NewBackupBucketController ¶
func NewBackupBucketController( ctx context.Context, log logr.Logger, clientMap clientmap.ClientMap, config *config.GardenletConfiguration, recorder record.EventRecorder, ) ( *Controller, error, )
NewBackupBucketController takes a Kubernetes client for the Garden clusters <k8sGardenClient>, a struct holding information about the acting Gardener, a <backupBucketInformer>, and a <recorder> for event recording. It creates a new Gardener controller.
Click to show internal directories.
Click to hide internal directories.