Documentation ¶
Index ¶
Constants ¶
const ( // condition types ConditionTypeStorageProviderReady = "StorageProviderReady" ConditionTypeParametersChecked = "ParametersChecked" ConditionTypeStorageClassCreated = "StorageClassCreated" ConditionTypePVCTemplateChecked = "PVCTemplateChecked" ConditionTypeDerivedObjectsDeleted = "DerivedObjectsDeleted" ConditionTypePreCheckPassed = "PreCheckPassed" // condition reasons ReasonStorageProviderReady = "StorageProviderReady" ReasonStorageProviderNotReady = "StorageProviderNotReady" ReasonStorageProviderNotFound = "StorageProviderNotFound" ReasonInvalidStorageProvider = "InvalidStorageProvider" ReasonParametersChecked = "ParametersChecked" ReasonCredentialSecretNotFound = "CredentialSecretNotFound" ReasonPrepareCSISecretFailed = "PrepareCSISecretFailed" ReasonPrepareStorageClassFailed = "PrepareStorageClassFailed" ReasonBadPVCTemplate = "BadPVCTemplate" ReasonStorageClassCreated = "StorageClassCreated" ReasonPVCTemplateChecked = "PVCTemplateChecked" ReasonHaveAssociatedBackups = "HaveAssociatedBackups" ReasonHaveResidualPVCs = "HaveResidualPVCs" ReasonDerivedObjectsDeleted = "DerivedObjectsDeleted" ReasonPreCheckPassed = "PreCheckPassed" ReasonPreCheckFailed = "PreCheckFailed" ReasonDigestChanged = "DigestChanged" ReasonUnknownError = "UnknownError" ReasonSkipped = "Skipped" )
condition constants
const (
PersistentVolumeClaimPopulating corev1.PersistentVolumeClaimConditionType = "Populating"
)
constant for volume populator
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActionSetReconciler ¶ added in v0.7.0
type ActionSetReconciler struct { client.Client Scheme *runtime.Scheme Recorder record.EventRecorder }
ActionSetReconciler reconciles a ActionSet object
func (*ActionSetReconciler) Reconcile ¶ added in v0.7.0
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the actionset closer to the desired state.
func (*ActionSetReconciler) SetupWithManager ¶ added in v0.7.0
func (r *ActionSetReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type BackupPolicyReconciler ¶
type BackupPolicyReconciler struct { client.Client Scheme *runtime.Scheme Recorder record.EventRecorder }
BackupPolicyReconciler reconciles a BackupPolicy object
func (*BackupPolicyReconciler) Reconcile ¶
func (r *BackupPolicyReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the backuppolicy closer to the desired state.
func (*BackupPolicyReconciler) SetupWithManager ¶
func (r *BackupPolicyReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type BackupReconciler ¶
type BackupReconciler struct { client.Client Scheme *k8sruntime.Scheme Recorder record.EventRecorder RestConfig *rest.Config // contains filtered or unexported fields }
BackupReconciler reconciles a Backup object
func (*BackupReconciler) Reconcile ¶
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the backup closer to the desired state.
func (*BackupReconciler) SetupWithManager ¶
func (r *BackupReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type BackupRepoReconciler ¶ added in v0.6.0
type BackupRepoReconciler struct { client.Client Scheme *runtime.Scheme Recorder record.EventRecorder RestConfig *rest.Config // contains filtered or unexported fields }
BackupRepoReconciler reconciles a BackupRepo object
func (*BackupRepoReconciler) Reconcile ¶ added in v0.6.0
func (r *BackupRepoReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.14.1/pkg/reconcile
func (*BackupRepoReconciler) SetupWithManager ¶ added in v0.6.0
func (r *BackupRepoReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type BackupScheduleReconciler ¶ added in v0.7.0
type BackupScheduleReconciler struct { client.Client Scheme *k8sruntime.Scheme Recorder record.EventRecorder }
BackupScheduleReconciler reconciles a BackupSchedule object
func (*BackupScheduleReconciler) Reconcile ¶ added in v0.7.0
func (r *BackupScheduleReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the backupschedule closer to the desired state.
func (*BackupScheduleReconciler) SetupWithManager ¶ added in v0.7.0
func (r *BackupScheduleReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type GCReconciler ¶ added in v0.7.0
type GCReconciler struct { client.Client Recorder record.EventRecorder // contains filtered or unexported fields }
GCReconciler garbage collection reconciler, which periodically deletes expired backups.
func NewGCReconciler ¶ added in v0.7.0
func NewGCReconciler(mgr ctrl.Manager) *GCReconciler
func (*GCReconciler) Reconcile ¶ added in v0.7.0
Reconcile is part of the main kubernetes reconciliation loop which aims to delete expired backups.
func (*GCReconciler) SetupWithManager ¶ added in v0.7.0
func (r *GCReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the GCReconciler using the supplied manager. GCController only watches on CreateEvent for ensuring every new backup will be taken care of. Other events will be filtered to decrease the load on the controller.
type RestoreReconciler ¶ added in v0.7.0
type RestoreReconciler struct { client.Client Scheme *runtime.Scheme Recorder record.EventRecorder }
RestoreReconciler reconciles a Restore object
func (*RestoreReconciler) Reconcile ¶ added in v0.7.0
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.11.0/pkg/reconcile
func (*RestoreReconciler) SetupWithManager ¶ added in v0.7.0
func (r *RestoreReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.
type VolumePopulatorReconciler ¶ added in v0.7.0
type VolumePopulatorReconciler struct { client.Client Scheme *runtime.Scheme Recorder record.EventRecorder }
VolumePopulatorReconciler reconciles a Restore object
func (*VolumePopulatorReconciler) Reconcile ¶ added in v0.7.0
func (r *VolumePopulatorReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error)
Reconcile is part of the main kubernetes reconciliation loop which aims to move the current state of the cluster closer to the desired state.
For more details, check Reconcile and its Result here: - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.11.0/pkg/reconcile
func (*VolumePopulatorReconciler) SetupWithManager ¶ added in v0.7.0
func (r *VolumePopulatorReconciler) SetupWithManager(mgr ctrl.Manager) error
SetupWithManager sets up the controller with the Manager.