Increased the number of environments per tenant

The 'max_environments' setting of [networking] group in murano
configuration file defines the maximum number of networks which may be
created by murano for any given router, thus eventually limiting the
number of environments to simultaneously co-exists within a tenant.

The previous default (20) was very low, and it was causing CIDR
conflicts even when the actual number of envs was not reaching the
limit.

This change increases the number of CIDRs allowed for environment
networks, thus reducing the probability of CIDR conflict.

NOTE: This change just reduces the risk of conflicts but does not
eleminate it completely.

Change-Id: Id913d17b8f7207afc9b1983287349a6d70a09edf
Partial-bug: #1502437
This commit is contained in:
Alexander Tivelkov 2015-10-13 20:31:05 +03:00
parent da57fe2b34
commit 84bbe9c758
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ murano_opts = [
]
networking_opts = [
cfg.IntOpt('max_environments', default=20,
cfg.IntOpt('max_environments', default=250,
help='Maximum number of environments that use a single router '
'per tenant'),