Merge "Fix Barbican client (Castellan) with TLS"

This commit is contained in:
Zuul
2020-07-14 08:57:54 +00:00
committed by Gerrit Code Review
4 changed files with 16 additions and 1 deletions

View File

@@ -206,6 +206,8 @@ connection_string = {{ osprofiler_backend_connection_string }}
{% if enable_barbican | bool %}
[barbican]
auth_endpoint = {{ keystone_internal_url }}
barbican_endpoint_type = internal
verify_ssl_path = {{ openstack_cacert }}
{% endif %}
[coordination]

View File

@@ -124,3 +124,10 @@ trace_sqlalchemy = true
hmac_keys = {{ osprofiler_secret }}
connection_string = {{ osprofiler_backend_connection_string }}
{% endif %}
{% if enable_barbican | bool %}
[barbican]
auth_endpoint = {{ keystone_internal_url }}
barbican_endpoint_type = internal
verify_ssl_path = {{ openstack_cacert }}
{% endif %}

View File

@@ -196,5 +196,6 @@ connection_string = {{ osprofiler_backend_connection_string }}
{% if enable_barbican | bool %}
[barbican]
auth_endpoint = {{ keystone_internal_url }}
cafile = {{ openstack_cacert }}
barbican_endpoint_type = internal
verify_ssl_path = {{ openstack_cacert }}
{% endif %}

View File

@@ -0,0 +1,5 @@
---
fixes:
- |
Fix Castellan (Barbican client) when used with enabled TLS.
`LP#1886615 <https://bugs.launchpad.net/kolla-ansible/+bug/1886615>`__