We recently bought two fusion drive iMacs, which I have had issues imaging, because they don't seem happy just taking a standard image from Casper (we are running v9.22). Best guess is Casper doesn't support Fusion drive imaging (well I can't find any option to let it know it is handling a Fusion drive setup), please let me know if I am wrong plus I did not see the point of setting up Deploy studio just to do two iMacs.
Consequently I ended up doing the following and it took about an hour to finish;
I am recalling from memory here, but this should work.
In this case, we had two 27" iMacs with a 3TB Fusion drive.
To image one using Casper with our 10.9.1 image, I had to;
1. Remove the Fusion and CoreStorage group
Netboot into Casper and run Terminal.
Execute command diskutil cs list and copy the ID string next to Logical Volume Group
Delete the Fusion / CoreStorage group by using diskutil cs delete <Logical Volume ID here>
Now format the storage drive, in this case the 3TB HDD, using Terminal command diskutil eraseDisk HFS+ "Macintosh HD" <disk ID>
(You can not format the disk using the diskutil GUI as it knows the drives are meant to be a Fusion setup, so it will ask you to repair before the GUI will work with the drives)
2. Now you need to recreate the Logical Volume Group, using Terminal, do the following;
Execute command diskutil list and note the disk ID number of the SSD and the Storage drive. Usually the SSD will be disk0 and the Storage disk will be disk1.
Execute diskutil cs create Fusion <SSD ID here> <HDD ID here> (you can replace "Fusion" with any name you desire, as this is just a name for the group volume)
Execute diskutil cs list and copy the Logical Volume Group ID and note the combined capacity of the Fusion drive. In my case, the total capacity would be 3.1 TB as our iMacs have a 128 GB SSD with 3TB HDD
3. Recreate the Fusion drive volume
To do so, execute the following command diskutil cs createVolume <Logical Volume Group ID> JHFS+ "Macintosh HD" <Capacity of the Fusion drive>.
Capacity must be in XXX.Xg for volumes less than 999.99GB in size, or X.Xt for volumes 1.0TB or greater
eg. diskutil cs createVolume <Logical Volume Group ID> JHFS+ "Macintosh HD" 3.1t or
eg. diskutil coreStoreage createVolume <Logical Volume Group ID> JHFS+ "Macintosh HD" 3.1t
When completed, you will see this output Finished CoreStorage operation
4. Image the storage drive (Macintosh HD) as you normally would, but do not check the "Reboot" option. When imaged, proceed to the next step
5. Now you need to boot into internet recovery by restarting the Mac and holding CMD+R, once in recovery, reinstall Mac OS X from Apple, this seemed to take about 5 minutes to download (based on a 10Gb/s connection) and about 30 minutes to install.
Once it has reinstalled OS X, it will reboot and you will find that it will boot into your image that you previously copied to the iMac.
NOTE: If you are planning on running Windows via BOOTCAMP on an iMac like this, when following step 3, make sure to specify a partition on the Storage drive to use in the Fusion setup so that it does not erase your BOOTCAMP partition, eg. diskXsY where X = disk ID and Y = partition ID.
BOOTCAMP will also not take any advantage of having a Fusion drive as it is a Mac OS feature only.
If I have missed anything or you would like to add something to this, please feel free to leave a reply and I will update this post accordingly if necessary.
Most of what I found came from the following website:
http://www.techradar.com/au/news/computing-components/storage/fusion-drive-what-it-is-and-how-it-speeds-up-your-mac-1154051
specifically from sections Make your own Fusion Drive and How to make your own Fusion Drive
EDIT 4th June 2014
Amended workflow.