Pass Velero server command args to the plugins

Pass Velero server command args to the plugins

Fixes #7806

Signed-off-by: Wenkai Yin(尹文开) <yinw@vmware.com>
This commit is contained in:
Wenkai Yin(尹文开)
2024-09-04 13:43:27 +08:00
parent 981f30cb25
commit dc6eeafe98
22 changed files with 500 additions and 483 deletions
+20
View File
@@ -0,0 +1,20 @@
package constant
const (
ControllerBackup = "backup"
ControllerBackupOperations = "backup-operations"
ControllerBackupDeletion = "backup-deletion"
ControllerBackupFinalizer = "backup-finalizer"
ControllerBackupRepo = "backup-repo"
ControllerBackupStorageLocation = "backup-storage-location"
ControllerBackupSync = "backup-sync"
ControllerDownloadRequest = "download-request"
ControllerGarbageCollection = "gc"
ControllerPodVolumeBackup = "pod-volume-backup"
ControllerPodVolumeRestore = "pod-volume-restore"
ControllerRestore = "restore"
ControllerRestoreOperations = "restore-operations"
ControllerSchedule = "schedule"
ControllerServerStatusRequest = "server-status-request"
ControllerRestoreFinalizer = "restore-finalizer"
)