From 84bbe9c75820b3eb1cb1c07c001bd86346db08e0 Mon Sep 17 00:00:00 2001 From: Alexander Tivelkov Date: Tue, 13 Oct 2015 20:31:05 +0300 Subject: [PATCH] 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 --- murano/common/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/murano/common/config.py b/murano/common/config.py index 3539f7a0..2c21dc28 100644 --- a/murano/common/config.py +++ b/murano/common/config.py @@ -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'),