Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ControlInterface ¶
type ControlInterface interface { // UpdateBackup implements the control logic for backup job and backup clean job's creation, deletion UpdateBackup(backup *v1alpha1.Backup) error }
ControlInterface implements the control logic for updating Backup It is implemented as an interface to allow for extensions that provide different semantics. Currently, there is only one implementation.
func NewDefaultBackupControl ¶
func NewDefaultBackupControl( cli versioned.Interface, backupManager backup.BackupManager) ControlInterface
NewDefaultBackupControl returns a new instance of the default implementation BackupControlInterface that implements the documented semantics for Backup.
type Controller ¶
type Controller struct {
// contains filtered or unexported fields
}
Controller controls backup.
func NewController ¶
func NewController( kubeCli kubernetes.Interface, cli versioned.Interface, informerFactory informers.SharedInformerFactory, kubeInformerFactory kubeinformers.SharedInformerFactory, ) *Controller
NewController creates a backup controller.
func (*Controller) Run ¶
func (bkc *Controller) Run(workers int, stopCh <-chan struct{})
Run runs the backup controller.
type FakeBackupControl ¶
type FakeBackupControl struct {
// contains filtered or unexported fields
}
FakeBackupControl is a fake BackupControlInterface
func NewFakeBackupControl ¶
func NewFakeBackupControl(backupInformer informers.BackupInformer) *FakeBackupControl
NewFakeBackupControl returns a FakeBackupControl
func (*FakeBackupControl) SetUpdateBackupError ¶
func (fbc *FakeBackupControl) SetUpdateBackupError(err error, after int)
SetUpdateBackupError sets the error attributes of updateBackupTracker
func (*FakeBackupControl) UpdateBackup ¶
func (fbc *FakeBackupControl) UpdateBackup(backup *v1alpha1.Backup) error
UpdateBackup adds the backup to BackupIndexer