<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Sep 20, 2016 at 2:00 PM, Staniforth, Paul <span dir="ltr">&lt;<a href="mailto:P.Staniforth@leedsbeckett.ac.uk" target="_blank">P.Staniforth@leedsbeckett.ac.uk</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Thanks Andrej,<br>
                                it gives me another reason to learn python. I will try but things are a little hectic at the moment as it&#39;s induction week at our University.<br></blockquote><div><br></div><div>Paul. you can also use Java or Ruby instead of Python.</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Regards,<br>
         Paul S.<br>
______________________________<wbr>__________<br>
From: Andrej Krejcir &lt;<a href="mailto:akrejcir@redhat.com">akrejcir@redhat.com</a>&gt;<br>
Sent: 20 September 2016 10:44<br>
To: Staniforth, Paul<br>
Cc: <a href="mailto:users@ovirt.org">users@ovirt.org</a><br>
Subject: Re: [ovirt-users] quota creation from ovirt-shell<br>
<div class="HOEnZb"><div class="h5"><br>
Hi,<br>
<br>
there is a bug in the ovirt-cli, which makes creating quotaclusterlimit and quotastoragelimit impossible.<br>
<br>
The correct syntax would be:<br>
add quotastoragelimit --parent-datacenter-name Default --parent-quota-name testcli ...<br>
<br>
You could use a python script with the SDK instead.<br>
For example:<br>
<br>
<br>
from ovirtsdk.api import API<br>
from ovirtsdk.xml.params import Quota<br>
from ovirtsdk.xml.params import QuotaStorageLimit<br>
<br>
api = API(&#39;IP:PORT/ovirt-engine/api&#39;<wbr>, &#39;admin@internal&#39;, &#39;pass&#39;)<br>
dc = api.datacenters.list()[0]<br>
quota = dc.quotas.add(Quota(name=&quot;<wbr>quota1&quot;))<br>
quota.quotastoragelimits.add(<wbr>QuotaStorageLimit(limit=100))<br>
<br>
<br>
<br>
Regards,<br>
Andrej<br>
<br>
----- Original Message -----<br>
From: &quot;Paul Staniforth&quot; &lt;<a href="mailto:P.Staniforth@leedsbeckett.ac.uk">P.Staniforth@leedsbeckett.ac.<wbr>uk</a>&gt;<br>
To: <a href="mailto:users@ovirt.org">users@ovirt.org</a><br>
Sent: Monday, September 12, 2016 6:00:50 PM<br>
Subject: [ovirt-users] quota creation from ovirt-shell<br>
<br>
<br>
<br>
Hello,<br>
<br>
I am trying to create user quotas from the command line via the shell.<br>
<br>
<br>
<br>
<br>
I am using ovirt 3.6.7 and the command<br>
<br>
<br>
<br>
<br>
add quota --parent-datacenter-name Default --name testcli<br>
<br>
<br>
<br>
<br>
creates a quota but without quotaclusterlimit or quotastoragelimit<br>
<br>
<br>
<br>
<br>
I can&#39;t find the correct syntax to create these.<br>
<br>
<br>
<br>
<br>
Also how would I add a consumer and change the values when created?<br>
<br>
<br>
<br>
<br>
Any examples or pointers to documentation would be appreciated.<br>
<br>
<br>
<br>
<br>
Thanks,<br>
<br>
Paul S.<br>
To view the terms under which this email is distributed, please go to:-<br>
<a href="http://disclaimer.leedsbeckett.ac.uk/disclaimer/disclaimer.html" rel="noreferrer" target="_blank">http://disclaimer.<wbr>leedsbeckett.ac.uk/disclaimer/<wbr>disclaimer.html</a><br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
Users mailing list<br>
<a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
To view the terms under which this email is distributed, please go to:-<br>
<a href="http://disclaimer.leedsbeckett.ac.uk/disclaimer/disclaimer.html" rel="noreferrer" target="_blank">http://disclaimer.<wbr>leedsbeckett.ac.uk/disclaimer/<wbr>disclaimer.html</a><br>
______________________________<wbr>_________________<br>
Users mailing list<br>
<a href="mailto:Users@ovirt.org">Users@ovirt.org</a><br>
<a href="http://lists.ovirt.org/mailman/listinfo/users" rel="noreferrer" target="_blank">http://lists.ovirt.org/<wbr>mailman/listinfo/users</a><br>
</div></div></blockquote></div><br></div></div>