Skip to content

Commit 600f3c2

Browse files
committed
fix mount failed on ubuntu 22.04(aks 1.25.2)
1 parent d78e046 commit 600f3c2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pkg/blobfuse-proxy/server/server.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ func (server *MountServer) MountAzureBlob(ctx context.Context,
7171
if protocol == blob.Fuse2 || server.blobfuseVersion == BlobfuseV2 {
7272
klog.V(2).Infof("using blobfuse V2 to mount")
7373
args = "mount " + args
74+
// add this arg for blobfuse2 to solve the issue:
75+
// https://github.com/Azure/azure-storage-fuse/issues/1015
76+
args = args + " " + "--ignore-open-flags=true"
7477
cmd = exec.Command("blobfuse2", strings.Split(args, " ")...)
7578
} else {
7679
klog.V(2).Infof("using blobfuse V1 to mount")

0 commit comments

Comments
 (0)