From 7ae0e0979e565de1d78dc4992f55522ad0ce57e1 Mon Sep 17 00:00:00 2001 From: Igor Gajsin Date: Tue, 29 Mar 2016 19:23:59 +0300 Subject: [PATCH] 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 --- deployment_scripts/puppet/manifests/compute-vmware.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment_scripts/puppet/manifests/compute-vmware.pp b/deployment_scripts/puppet/manifests/compute-vmware.pp index 011e2c1..3ba237b 100644 --- a/deployment_scripts/puppet/manifests/compute-vmware.pp +++ b/deployment_scripts/puppet/manifests/compute-vmware.pp @@ -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"