Allow tenant isolation by default

Many people running into the issue of forgetting
to allow tenant isolation when running tempest in parallel.

Since the parallel is the `default mode`, the default config
should support this use case.

Change-Id: Ia30cfbc239c8b8628ac0926424c4100d013cd620
This commit is contained in:
Attila Fazekas 2015-02-18 17:16:02 +01:00
parent 4f5a0a7110
commit 5dda158c6a
2 changed files with 2 additions and 2 deletions

@ -125,7 +125,7 @@
# achieved configuring a list of test accounts (boolean value)
# Deprecated group/name - [compute]/allow_tenant_isolation
# Deprecated group/name - [orchestration]/allow_tenant_isolation
#allow_tenant_isolation = false
#allow_tenant_isolation = true
# If set to True it enables the Accounts provider, which locks
# credentials to allow for parallel execution with pre-provisioned

@ -40,7 +40,7 @@ AuthGroup = [
help="Path to the yaml file that contains the list of "
"credentials to use for running tests"),
cfg.BoolOpt('allow_tenant_isolation',
default=False,
default=True,
help="Allows test cases to create/destroy tenants and "
"users. This option requires that OpenStack Identity "
"API admin credentials are known. If false, isolated "