Merge "set public_endpoint keystone.conf value"

This commit is contained in:
Jenkins 2015-08-10 15:33:28 +00:00 committed by Gerrit Code Review
commit c4b2b9a1b4
2 changed files with 3 additions and 1 deletions

View File

@ -146,6 +146,7 @@ class openstack::keystone (
token_caching => $token_caching,
cache_backend => $cache_backend,
revoke_driver => $revoke_driver,
public_endpoint => $public_url,
}
if $memcache_servers {

View File

@ -61,7 +61,7 @@ describe manifest do
end
it 'should configure memcache_pool keystone cache backend' do
it 'should configure keystone with paramters' do
should contain_keystone_config('token/caching').with(:value => 'false')
should contain_keystone_config('cache/enabled').with(:value => 'true')
should contain_keystone_config('cache/backend').with(:value => 'keystone.cache.memcache_pool')
@ -72,6 +72,7 @@ describe manifest do
should contain_keystone_config('cache/memcache_pool_unused_timeout').with(:value => '60')
should contain_keystone_config('memcache/dead_retry').with(:value => '300')
should contain_keystone_config('memcache/socket_timeout').with(:value => '1')
should contain_keystone_config('DEFAULT/public_endpoint').with(:value => public_url)
end
it 'should configure revoke_driver for keystone' do