update network and subnet quota during Openstack installation -


the default values 10 not enough our project.

is there way modify network , subnet quota openstack apis , shell script?

i advise follow: http://docs.openstack.org/user-guide-admin/content/cli_set_quotas.html

in brief (repeating 1 of examples in link above)

 neutron quota-update --tenant_id {your_tenant_id} --network 3 --subnet 3 --port 3 -- --floatingip 3 --router 3 
  • your_tenant_id project tenant id
  • when updating limits l3 resource such as, router or floating ip. have put additional -- before

the above guide proccess of updating quotas after have create networks. since in question mentioned 'during installation', update default quotas need change values in neutron.conf.


Popular posts from this blog

javascript - Js, document.getElementById("ID").innerHTML, error -

objective c - Is there a way in OCMockito to make stubs fail when an unknown method is called? -

jquery - jqGrid update specific column data with out refreshing the entire column? -