Use keystone v3 api by default

It's needed to support transient clusters. Keystone v3 api was enabled
by default in Keystone starting from the Havana release, so, we could
use it by default too.

Change-Id: I10bec790c72b07983e2bc908cc24485005ed6536
This commit is contained in:
Sergey Lukjanov 2014-03-03 18:34:53 +04:00
parent a3f05fd3e0
commit ba1acf80ef
2 changed files with 2 additions and 2 deletions

View File

@ -293,7 +293,7 @@
# Enables Savanna to use Keystone API v3. If that flag is
# disabled, per-job clusters will not be terminated
# automatically. (boolean value)
#use_identity_api_v3=false
#use_identity_api_v3=true
#

View File

@ -25,7 +25,7 @@ CONF = cfg.CONF
opts = [
cfg.BoolOpt('use_identity_api_v3',
default=False,
default=True,
help='Enables Savanna to use Keystone API v3. '
'If that flag is disabled, '
'per-job clusters will not be terminated automatically.')