From 78f9a379d44616c8f237b26e6355c8392839a1d9 Mon Sep 17 00:00:00 2001 From: sivakumar subraani Date: Wed, 4 Sep 2024 17:18:15 +0000 Subject: [PATCH] pb-7868: Added nfs mountoptions for restore kdmp job with NFS backuplocation. - With out mountoptions the NFS backuplocation PVC mount was failing as we were not passing the nfsvers option for nfsV4. --- pkg/controllers/dataexport/reconcile.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/controllers/dataexport/reconcile.go b/pkg/controllers/dataexport/reconcile.go index 7e863053..2ac263f5 100644 --- a/pkg/controllers/dataexport/reconcile.go +++ b/pkg/controllers/dataexport/reconcile.go @@ -1973,6 +1973,7 @@ func startTransferJob( drivers.WithNfsExportDir(nfsExportPath), drivers.WithPodUserId(psaJobUid), drivers.WithPodGroupId(psaJobGid), + drivers.WithNfsMountOption(nfsMountOption), ) }