DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.

DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
https://issues.apache.org/jira/browse/CLOUDSTACK-2778
This code was being developing in my local solidfire_plugin branch. I recently built a patch file and submitted it for review.
https://reviews.apache.org/r/11479
This design document outlines the reason for this feature and the main sub-systems impacted.
General description of feature:
Implement a storage plug-in for SolidFire. The plug-in is based on the new storage framework that went in with 4.2, as well.
In addition, there are GUI (and related) changes to enable admins and end users to specify a Min, Max, and Burst number of IOPS for a Disk Offering. These fields (although optional) tend to follow the pattern previously established for the Disk Size field.
Also, the storage framework itself needs to be enhanced. For example, it needs to support creating and deleting storage repositories as is necessary for a dynamic type of zone-wide primary storage (such as the SolidFire plug-in is).
The desired behavior of the software is as such:
* Allow an admin to invoke the CloudStack API to add Primary Storage based on the SolidFire plug-in.
* Allow an admin to create a Disk Offering that specifies a Min, Max, and Burst number of IOPS or allows the admin to pass this ability on to the end user.
* Allow an end user to execute such a Disk Offering. As is the case for any Disk Offering, this leads to the creation of a row in the volumes table.
* Allow an end user to attach the resultant volume (noted in the DB) to a VM. The storage framework invokes logic in the plug-in and the plug-in creates a volume on its SAN with the correct size and IOPS values. The agent software for XenServer detects that such an attach is being requested and creates a Storage Repository (and single VDI within the SR) based on the storage IP address of the SAN and the IQN of the volume. The VDI is then hooked up to the VM.
* Allow an end user to detach the volume. This leads to the destruction of the SR, but the SAN volume remains intact and can be reattached later to any VM running in a XenServer resource pool in the zone.
* Allow an end user to delete the volume. This leads to the volume being deleted on the SAN and being marked in the CloudStack DB as deleted.
Disk Offering creation has been extended to include optional parameters: Min, Max, and Burst IOPS as well as if these values should be user customizable.
Volume creation has been extended to include optional parameters: Min, Max, and Burst IOPS.
A storage plug-in has been implemented to create and delete volumes on a SAN dynamically (as is made possible via the storage plug-in framework).
The disk_offering table has four new fields: min_iops, max_iops, burst_iops, and a boolean to say whether these fields are user customizable.
The volumes table has three new fields: min_iops, max_iops, and burst_iops.
Appendix A:
Appendix B: