Make Kopia file parallelism configurable

Signed-off-by: Ming <mqiu@vmware.com>
This commit is contained in:
Ming
2023-10-23 02:08:16 +00:00
parent 19f38f9623
commit 481cb60493
39 changed files with 241 additions and 61 deletions

View File

@@ -178,7 +178,7 @@ func (r *PodVolumeBackupReconciler) Reconcile(ctx context.Context, req ctrl.Requ
}
}
if err := fsBackup.StartBackup(path, "", parentSnapshotID, false, pvb.Spec.Tags); err != nil {
if err := fsBackup.StartBackup(path, "", parentSnapshotID, false, pvb.Spec.Tags, pvb.Spec.UploaderConfig); err != nil {
return r.errorOut(ctx, &pvb, err, "error starting data path backup", log)
}