Hi,
That's a valid question. Some ideas below.
An SVM administrator could be restricted via 'Aggregate delegation' & 'max-volumes' options.
Aggregate Delegation : This allows "cluster Admin" to put restriction on 'SVMs'.
For example: With no "aggr delegation", SVM admin cannot create any volumes, they can only manage what is already provisioned. Further, you can also designate specific list of aggregates for SVM to work with.
As cluster admin:
You can first check, if there is any aggr-list given to that SVM:
::> vserver show -vserver <vserver> -fields aggr-list
If none, then you can add one:
::> vserver modify -vserver <vserver> -aggr-list <aggregate>
You can even decide how many volumes SVM admin can create:
::> vserver modify -vserver <vserver> -max-volumes <integer>
Once these restrictions are in place, you can log-in via ssh as vsadmin administrator and verify if the restrictions are in place.
Note: Please remember an 'SVM Administrator' ( with 'vsadmin' role(s) cannot use System Manager (GUI) to manage delegated SVMs. You can manage them only by using the command-line interface (CLI).
Thanks!