diff --git a/src/administrators-guide/src/docbkx/content/general.xml b/src/administrators-guide/src/docbkx/content/general.xml index ed2aa70..ed80adb 100644 --- a/src/administrators-guide/src/docbkx/content/general.xml +++ b/src/administrators-guide/src/docbkx/content/general.xml @@ -451,7 +451,7 @@ RETVAL=0 service rabbitmq-server-murano start service rabbitmq-server-murano status service rabbitmq-server-murano stop - + @@ -467,39 +467,69 @@ update-rc.d rabbitmq-server-murano defaults
- Configuring Quantum SecurityGroups quotas - - Default quotas driver used by quantum is - quantum.quota.ConfDriver, all limits set in /etc/quantum/ - quantum.conf - non flexible. To extend functionality and flexibility, default quota driver should be - changed to - quantum.db.quota_db.DbQuotaDrive. - - - - - Change /etc/quantum/quantum.conf with next values: - - + Configure Quantum +
+ Allow subnet ip-range overlapping + + When deploying environments, Murano will create dedicated network for each of them, and every such network will have a subnet created. + All these subnets will have identical ip-ranges. Theoretically this is perfectly fine, as these subnets belong to different isolated Networks + (L2 segments) and are connected to different routers. + + + However, by default Quantum does not allow overlapping IPs for different subnets - even in different Networks. + To override this restriction, change /etc/quantum/quantum.conf: uncomment allow_overlapping_ips parameter + and change its value to True: + + +[DEFAULT] +... +# Enable or disable overlapping IPs for subnets +# Attention: the following parameter MUST be set to False if Neutron is +# being used in conjunction with nova security groups +allow_overlapping_ips = True + + + Then, restart all quantum services: + + +cd /etc/init.d/ +for q in quantum-*; do restart $q; done + +
+
+ Specify SecurityGroups quotas + + Default quotas driver used by quantum is - quantum.quota.ConfDriver, all limits set in /etc/quantum/ + quantum.conf - non flexible. To extend functionality and flexibility, default quota driver should be + changed to - quantum.db.quota_db.DbQuotaDrive. + + + + + Change /etc/quantum/quantum.conf with next values: + + [QUOTAS] ... #quota_driver = quantum.quota.ConfDriver quota_driver = quantum.db.quota_db.DbQuotaDriver ... - - - - - Restart all quantum services: - - + + + + + Restart all quantum services: + + cd /etc/init.d/ for q in quantum-*; do restart $q; done - - - - - Update required quota with quantum CLI: - - + + + + + Update required quota with quantum CLI: + + quantum quota-update --security_group 100 --tenant-id <tenant_id> +---------------------+-------+ | Field | Value | @@ -512,9 +542,10 @@ quantum quota-update --security_group 100 --tenant-id <tenant_id> | security_group_rule | 100 | | subnet | 10 | +---------------------+-------+ - - - + + + +
Reconfigure rate-limits for Nova