From 33d690c7eb0cadf2d8782cb67bb2979e223a3f89 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 9 Jul 2020 08:31:19 +0900 Subject: [PATCH] Add support for the interface parameter in authtoken middleware This patch adds support for [keystone_authtoken] interface parameter, so that operators can define which endpoint should be used by authtoken middleware. Change-Id: I39bf94a041d7d4af31fb2653c9274ee8fbdb732e --- manifests/keystone/authtoken.pp | 7 +++++++ .../keystone-authtoken-interface-33ee768d856a0110.yaml | 5 +++++ spec/classes/aodh_keystone_authtoken_spec.rb | 9 +++++---- 3 files changed, 17 insertions(+), 4 deletions(-) create mode 100644 releasenotes/notes/keystone-authtoken-interface-33ee768d856a0110.yaml diff --git a/manifests/keystone/authtoken.pp b/manifests/keystone/authtoken.pp index 1fe48195..38cc333b 100644 --- a/manifests/keystone/authtoken.pp +++ b/manifests/keystone/authtoken.pp @@ -177,6 +177,11 @@ # true/false # Defaults to $::os_service_default. # +# [*interface*] +# (Optional) Interface to use for the Identity API endpoint. Valid values are +# "public", "internal" or "admin". +# Defaults to $::os_service_default. +# class aodh::keystone::authtoken( $username = 'aodh', $password = $::os_service_default, @@ -212,6 +217,7 @@ class aodh::keystone::authtoken( $token_cache_time = $::os_service_default, $service_token_roles = $::os_service_default, $service_token_roles_required = $::os_service_default, + $interface = $::os_service_default, ) { include aodh::deps @@ -255,5 +261,6 @@ class aodh::keystone::authtoken( token_cache_time => $token_cache_time, service_token_roles => $service_token_roles, service_token_roles_required => $service_token_roles_required, + interface => $interface, } } diff --git a/releasenotes/notes/keystone-authtoken-interface-33ee768d856a0110.yaml b/releasenotes/notes/keystone-authtoken-interface-33ee768d856a0110.yaml new file mode 100644 index 00000000..324cfc6e --- /dev/null +++ b/releasenotes/notes/keystone-authtoken-interface-33ee768d856a0110.yaml @@ -0,0 +1,5 @@ +--- +features: + - | + The new ``aodh::keystone::authtoken::interface`` parameter has been added, + which can be used to set the interface parameter in authtoken middleware. diff --git a/spec/classes/aodh_keystone_authtoken_spec.rb b/spec/classes/aodh_keystone_authtoken_spec.rb index 3eb0608c..7d980c09 100644 --- a/spec/classes/aodh_keystone_authtoken_spec.rb +++ b/spec/classes/aodh_keystone_authtoken_spec.rb @@ -44,6 +44,7 @@ describe 'aodh::keystone::authtoken' do is_expected.to contain_aodh_config('keystone_authtoken/token_cache_time').with_value('') is_expected.to contain_aodh_config('keystone_authtoken/service_token_roles').with_value('') is_expected.to contain_aodh_config('keystone_authtoken/service_token_roles_required').with_value('') + is_expected.to contain_aodh_config('keystone_authtoken/interface').with_value('') end end @@ -62,8 +63,7 @@ describe 'aodh::keystone::authtoken' do :auth_type => 'password', :auth_version => 'v3', :cache => 'somevalue', - :cafile => -'/opt/stack/data/cafile.pem', + :cafile => '/opt/stack/data/cafile.pem', :certfile => 'certfile.crt', :delay_auth_decision => false, :enforce_token_bind => 'permissive', @@ -79,13 +79,13 @@ describe 'aodh::keystone::authtoken' do :memcache_secret_key => 'secret_key', :memcache_security_strategy => 'ENCRYPT', :memcache_use_advanced_pool => true, - :memcached_servers => -['memcached01:11211','memcached02:11211'], + :memcached_servers => ['memcached01:11211','memcached02:11211'], :manage_memcache_package => true, :region_name => 'region2', :token_cache_time => '301', :service_token_roles => ['service'], :service_token_roles_required => false, + :interface => 'internal', }) end @@ -123,6 +123,7 @@ describe 'aodh::keystone::authtoken' do is_expected.to contain_aodh_config('keystone_authtoken/token_cache_time').with_value(params[:token_cache_time]) is_expected.to contain_aodh_config('keystone_authtoken/service_token_roles').with_value(params[:service_token_roles]) is_expected.to contain_aodh_config('keystone_authtoken/service_token_roles_required').with_value(params[:service_token_roles_required]) + is_expected.to contain_aodh_config('keystone_authtoken/interface').with_value(params[:interface]) end it 'installs python memcache package' do