diff --git a/ansible/roles/cyborg/templates/cyborg.conf.j2 b/ansible/roles/cyborg/templates/cyborg.conf.j2 index 3c8a3644b1..737925f9a4 100644 --- a/ansible/roles/cyborg/templates/cyborg.conf.j2 +++ b/ansible/roles/cyborg/templates/cyborg.conf.j2 @@ -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 diff --git a/releasenotes/notes/bug-1941704-d31774f4dd56374f.yaml b/releasenotes/notes/bug-1941704-d31774f4dd56374f.yaml new file mode 100644 index 0000000000..2c49df2056 --- /dev/null +++ b/releasenotes/notes/bug-1941704-d31774f4dd56374f.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Fixes generation of ``cyborg.conf``. + `LP#1941704 `__