auth_api_version = v3

Compute-vmware nodes use obsolete version of prototcol for auth.
Set v3 instead v2.0

Change-Id: I20dd663101d7635ec69aa404f20b10b3e10cfa4d
Closes-bug: #1563374
This commit is contained in:
Igor Gajsin 2016-03-29 19:23:59 +03:00
parent 45efa837a6
commit 7ae0e0979e
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ $admin_tenant_name = try_get_value($neutron_config,
$admin_username = try_get_value($neutron_config,
'keystone/admin_user', 'neutron')
$region_name = hiera('region', 'RegionOne')
$auth_api_version = 'v2.0'
$auth_api_version = 'v3'
$admin_identity_uri = "http://${service_endpoint}:35357"
$admin_auth_url = "${admin_identity_uri}/${auth_api_version}"
$neutron_url = "http://${neutron_endpoint}:9696"