diff --git a/internal/rbd/nodeserver.go b/internal/rbd/nodeserver.go index 5c0316107..663a9c6e0 100644 --- a/internal/rbd/nodeserver.go +++ b/internal/rbd/nodeserver.go @@ -414,6 +414,9 @@ func (ns *NodeServer) mountVolumeToStagePath(ctx context.Context, req *csi.NodeS } opt := []string{"_netdev"} + if fsType == "xfs" { + opt = append(opt, "nouuid") + } opt = csicommon.ConstructMountOptions(opt, req.GetVolumeCapability()) isBlock := req.GetVolumeCapability().GetBlock() != nil