Merge "Fix wrong opts in cyborg.conf"

This commit is contained in:
Zuul 2021-11-01 10:35:30 +00:00 committed by Gerrit Code Review
commit 8fee16dcfc
2 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,7 @@ max_pool_size = {{ database_max_pool_size }}
memcache_security_strategy = ENCRYPT
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 }}
project_domain_name = {{ default_project_domain_name }}
project_name = service

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Fixes generation of ``cyborg.conf``.
`LP#1941704 <https://launchpad.net/bugs/1941704>`__