Change Murano Dashboard Limit for Memory and Instances

The commit changes the value of “limitIterators” to 10000 and the
“memoryQuota” to 1000000. This will increase the instance count and
memory quota that can be created in the template definition of
“UI.yaml” file.

Change-Id: Ia39203946ec76d77d64338041f387b1f176fa320
Closes-Bug: #1640998
This commit is contained in:
Aqsa 2017-01-13 11:40:11 +01:00
parent 17203b8f9e
commit 4eeb1feeea
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ from yaql.language import exceptions as yaql_exc
def _set_up_yaql():
legacy_engine_options = {
'yaql.limitIterators': 100,
'yaql.memoryQuota': 20000
'yaql.limitIterators': 10000,
'yaql.memoryQuota': 1000000
}
return yaql.YaqlFactory().create(options=legacy_engine_options)