mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-06 21:36:30 +00:00
Pass Velero server command args to the plugins Fixes #7806 Signed-off-by: Wenkai Yin(尹文开) <yinw@vmware.com>
21 lines
859 B
Go
21 lines
859 B
Go
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"
|
|
)
|