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

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -