mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-05 13:05:17 +00:00
* Avoid plugin framework importers from needing cloud provider imports Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
12 lines
344 B
Go
12 lines
344 B
Go
package configs
|
|
|
|
const (
|
|
// PVCNameAnnotation is the key for the annotation added to
|
|
// pod volume backups when they're for a PVC.
|
|
PVCNameAnnotation = "velero.io/pvc-name"
|
|
|
|
// DefaultVolumesToFsBackup specifies whether pod volume backup should be used, by default, to
|
|
// take backup of all pod volumes.
|
|
DefaultVolumesToFsBackup = false
|
|
)
|