Use public keystone URL for www_authenticate_uri
The `www_authenticate_uri` parameter is used to indicate to clients where they should get a token from in order to authenticate against a service. Most clients are not expected to be able to talk to the internal identity endpoint, so this parameter should refer to the public endpoint instead, see also [0]. [0] https://opendev.org/openstack/keystonemiddleware/src/branch/master/keystonemiddleware/auth_token/_opts.py#L31-L50 Change-Id: Ic99804967b5a62b5a9e39486749474520734ba48
This commit is contained in:
committed by
Dr. Jens Harbott
parent
c5b2829492
commit
9ecdf2f0a3
@@ -20,7 +20,7 @@ service_type = alarming
|
||||
memcache_security_strategy = {{ memcache_security_strategy }}
|
||||
memcache_secret_key = {{ memcache_secret_key }}
|
||||
memcached_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
project_domain_name = {{ default_project_domain_name }}
|
||||
project_name = service
|
||||
user_domain_name = {{ default_user_domain_name }}
|
||||
|
||||
@@ -59,7 +59,7 @@ topic = barbican_notifications
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = key-manager
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
project_name = service
|
||||
user_domain_id = {{ default_user_domain_id }}
|
||||
|
||||
@@ -21,7 +21,7 @@ plugins = virtual.instance.plugin,physical.host.plugin
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = reservation
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = default
|
||||
|
||||
@@ -123,7 +123,7 @@ service_type = volume
|
||||
# see: https://security.openstack.org/ossa/OSSA-2023-003.html
|
||||
# and: https://docs.openstack.org/cinder/zed/configuration/block-storage/service-token.html#troubleshooting
|
||||
service_token_roles_required = true
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -18,7 +18,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = rating
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -20,7 +20,7 @@ memcache_security_strategy = {{ memcache_security_strategy }}
|
||||
memcache_secret_key = {{ memcache_secret_key }}
|
||||
memcache_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address(host) | put_address_in_context('memcache') }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
||||
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
project_domain_name = {{ default_project_domain_name }}
|
||||
project_name = service
|
||||
user_domain_name = {{ default_user_domain_name }}
|
||||
|
||||
@@ -20,7 +20,7 @@ enabled_extensions_admin = quotas, reports
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = dns
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -39,7 +39,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = image
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -45,7 +45,7 @@ url = mysql+pymysql://{{ gnocchi_database_user }}:{{ gnocchi_database_password }
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = metric
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
project_name = service
|
||||
user_domain_id = {{ default_user_domain_id }}
|
||||
|
||||
@@ -30,7 +30,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = orchestration
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -44,7 +44,7 @@ endpoint_override = {{ ironic_internal_endpoint }}
|
||||
{% if ironic_enable_keystone_integration | bool %}
|
||||
[keystone_authtoken]
|
||||
service_type = baremetal-introspection
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -74,7 +74,7 @@ max_retries = -1
|
||||
{% if ironic_enable_keystone_integration | bool %}
|
||||
[keystone_authtoken]
|
||||
service_type = baremetal
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -81,7 +81,7 @@ cafile = {{ openstack_cacert }}
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = container-infra
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_name = {{ default_project_domain_name }}
|
||||
|
||||
@@ -32,7 +32,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = share
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -23,7 +23,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = instance-ha
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_name = {{ default_project_domain_name }}
|
||||
|
||||
@@ -40,7 +40,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = workflow
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -106,7 +106,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = network
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -113,7 +113,7 @@ memcache_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = compute
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -59,7 +59,7 @@ memcached_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_addres
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = load-balancer
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -26,7 +26,7 @@ memcache_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_address
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = placement
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -33,7 +33,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = nfv-orchestration
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_name = {{ default_project_domain_id }}
|
||||
|
||||
@@ -54,7 +54,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = database
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
project_domain_name = {{ default_project_domain_name }}
|
||||
project_name = service
|
||||
user_domain_name = {{ default_user_domain_name }}
|
||||
|
||||
@@ -20,7 +20,7 @@ max_retries = -1
|
||||
|
||||
[keystone_authtoken]
|
||||
service_type = infra-optim
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -28,7 +28,7 @@ max_retries = -1
|
||||
# keystone_authtoken sections are used and Zun internals may use either -
|
||||
# - best keep them both in sync
|
||||
[keystone_auth]
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
@@ -51,7 +51,7 @@ memcached_servers = {% for host in groups['memcached'] %}{{ 'api' | kolla_addres
|
||||
# - best keep them both in sync
|
||||
[keystone_authtoken]
|
||||
service_type = container
|
||||
www_authenticate_uri = {{ keystone_internal_url }}
|
||||
www_authenticate_uri = {{ keystone_public_url }}
|
||||
auth_url = {{ keystone_internal_url }}
|
||||
auth_type = password
|
||||
project_domain_id = {{ default_project_domain_id }}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
other:
|
||||
- |
|
||||
The `www_authenticate_uri` parameter, which is used to indicate to
|
||||
clients where they should get a token from in order to authenticate against
|
||||
a service, is switched from the internal identity endpoint to the public
|
||||
endpoint, see also
|
||||
`this note <https://opendev.org/openstack/keystonemiddleware/src/branch/master/keystonemiddleware/auth_token/_opts.py#L31-L50>`_.
|
||||
Reference in New Issue
Block a user