Revert "Fix os_region_name in provider"
When we revert the change that moved os_region_name, we must also revert this fix that resulted from that change. Depends on https://review.openstack.org/#/c/174968/ This reverts commit 354ae692a502a6089f4f82b3b58ee2aaa42443a2. Change-Id: I65249b0734ae1a1bfbf0e5e153d19787f6aded5f
This commit is contained in:
parent
354ae692a5
commit
e2301958e9
@ -16,7 +16,7 @@ class Puppet::Provider::Glance < Puppet::Provider
|
|||||||
glance_file['keystone_authtoken']['admin_tenant_name'] and
|
glance_file['keystone_authtoken']['admin_tenant_name'] and
|
||||||
glance_file['keystone_authtoken']['admin_user'] and
|
glance_file['keystone_authtoken']['admin_user'] and
|
||||||
glance_file['keystone_authtoken']['admin_password'] and
|
glance_file['keystone_authtoken']['admin_password'] and
|
||||||
glance_file['glance_store']['os_region_name']
|
glance_file['DEFAULT']['os_region_name']
|
||||||
|
|
||||||
g = {}
|
g = {}
|
||||||
g['auth_host'] = glance_file['keystone_authtoken']['auth_host'].strip
|
g['auth_host'] = glance_file['keystone_authtoken']['auth_host'].strip
|
||||||
@ -25,7 +25,7 @@ class Puppet::Provider::Glance < Puppet::Provider
|
|||||||
g['admin_tenant_name'] = glance_file['keystone_authtoken']['admin_tenant_name'].strip
|
g['admin_tenant_name'] = glance_file['keystone_authtoken']['admin_tenant_name'].strip
|
||||||
g['admin_user'] = glance_file['keystone_authtoken']['admin_user'].strip
|
g['admin_user'] = glance_file['keystone_authtoken']['admin_user'].strip
|
||||||
g['admin_password'] = glance_file['keystone_authtoken']['admin_password'].strip
|
g['admin_password'] = glance_file['keystone_authtoken']['admin_password'].strip
|
||||||
g['os_region_name'] = glance_file['glance_store']['os_region_name'].strip
|
g['os_region_name'] = glance_file['DEFAULT']['os_region_name'].strip
|
||||||
|
|
||||||
# auth_admin_prefix not required to be set.
|
# auth_admin_prefix not required to be set.
|
||||||
g['auth_admin_prefix'] = (glance_file['keystone_authtoken']['auth_admin_prefix'] || '').strip
|
g['auth_admin_prefix'] = (glance_file['keystone_authtoken']['auth_admin_prefix'] || '').strip
|
||||||
@ -36,14 +36,14 @@ class Puppet::Provider::Glance < Puppet::Provider
|
|||||||
glance_file['keystone_authtoken']['admin_tenant_name'] and
|
glance_file['keystone_authtoken']['admin_tenant_name'] and
|
||||||
glance_file['keystone_authtoken']['admin_user'] and
|
glance_file['keystone_authtoken']['admin_user'] and
|
||||||
glance_file['keystone_authtoken']['admin_password'] and
|
glance_file['keystone_authtoken']['admin_password'] and
|
||||||
glance_file['glance_store']['os_region_name']
|
glance_file['DEFAULT']['os_region_name']
|
||||||
|
|
||||||
g = {}
|
g = {}
|
||||||
g['identity_uri'] = glance_file['keystone_authtoken']['identity_uri'].strip
|
g['identity_uri'] = glance_file['keystone_authtoken']['identity_uri'].strip
|
||||||
g['admin_tenant_name'] = glance_file['keystone_authtoken']['admin_tenant_name'].strip
|
g['admin_tenant_name'] = glance_file['keystone_authtoken']['admin_tenant_name'].strip
|
||||||
g['admin_user'] = glance_file['keystone_authtoken']['admin_user'].strip
|
g['admin_user'] = glance_file['keystone_authtoken']['admin_user'].strip
|
||||||
g['admin_password'] = glance_file['keystone_authtoken']['admin_password'].strip
|
g['admin_password'] = glance_file['keystone_authtoken']['admin_password'].strip
|
||||||
g['os_region_name'] = glance_file['glance_store']['os_region_name'].strip
|
g['os_region_name'] = glance_file['DEFAULT']['os_region_name'].strip
|
||||||
|
|
||||||
return g
|
return g
|
||||||
else
|
else
|
||||||
|
@ -36,7 +36,7 @@ describe Puppet::Provider::Glance do
|
|||||||
'admin_user' => 'user',
|
'admin_user' => 'user',
|
||||||
'admin_password' => 'pass'
|
'admin_password' => 'pass'
|
||||||
},
|
},
|
||||||
'glance_store' =>
|
'DEFAULT' =>
|
||||||
{
|
{
|
||||||
'os_region_name' => 'SomeRegion',
|
'os_region_name' => 'SomeRegion',
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user