Skip to content

Commit

Permalink
KUBEDR-5709: Add linode to the list of live drivers (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzaninovic authored Jul 1, 2024
1 parent 3d8ae09 commit db68872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ BUILD_IMAGE ?= golang:1.20.6-bullseye

REGISTRY ?= catalogicsoftware
IMAGE_NAME ?= $(REGISTRY)/velero-plugin-for-csi
TAG ?= v0.5.1.7
TAG ?= v0.5.1.8

IMAGE ?= $(IMAGE_NAME):$(TAG)

Expand Down
2 changes: 1 addition & 1 deletion internal/backup/pvc_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type PVCBackupItemAction struct {

// liveCopyDrivers is a list of drivers for which we will skip creating the snapshot and will copy data live
// Must match liveCopyDrivers in amdslib/utils/utils.go
var liveCopyDrivers = []string{"nfs.csi.k8s.io", "efs.csi.aws.com", "driver.longhorn.io"}
var liveCopyDrivers = []string{"nfs.csi.k8s.io", "efs.csi.aws.com", "driver.longhorn.io", "linodebs.csi.linode.com"}

// AppliesTo returns information indicating that the PVCBackupItemAction should be invoked to backup PVCs.
func (p *PVCBackupItemAction) AppliesTo() (velero.ResourceSelector, error) {
Expand Down

0 comments on commit db68872

Please sign in to comment.