mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-08 14:21:18 +00:00
11 lines
258 B
Go
11 lines
258 B
Go
package controller
|
|
|
|
import (
|
|
velerov1api "github.com/vmware-tanzu/velero/pkg/apis/velero/v1"
|
|
"github.com/vmware-tanzu/velero/pkg/uploader"
|
|
)
|
|
|
|
func isLegacyPVR(pvr *velerov1api.PodVolumeRestore) bool {
|
|
return pvr.Spec.UploaderType == uploader.ResticType
|
|
}
|