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.
Click to show internal directories.
Click to hide internal directories.