You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When changing in contrail-kolla-ansible/ansible/roles/horizon/templates/local_settings.j2
OPENSTACK_KEYSTONE_DOMAIN_CHOICES = (
{% for key, value in horizon_keystone_domain_choices.items() %}
('{{ key }}', '{{ value }}'),
{% endfor %}
)
with :
OPENSTACK_KEYSTONE_DOMAIN_CHOICES = (
{% for key, value in horizon_keystone_domain_choices.items() %}
({{ key }}, {{ value }}),
{% endfor %}
)
Problem is solved in that case.
Also when setting directly the domain in contrail-kolla-ansible/ansible/roles/horizon/defaults/main.yml and without modifying local_setting template this is OK
I'm trying to setup mutlidomain auth with domain choices in horizon UI (branch stable-queens).
When setting in config/instances.yaml :
This result on an error when horizon docker launch.
Resulting var in : /etc/kolla/globals
horizon_keystone_domain_choices: {u'Default': u'Default', u'domain': `u'domain'}
Result in local_settings in /etc/kolla/horizon/local_settings :
This causes horizon docker to restart infinitely.
When changing in contrail-kolla-ansible/ansible/roles/horizon/templates/local_settings.j2
with :
Problem is solved in that case.
Also when setting directly the domain in contrail-kolla-ansible/ansible/roles/horizon/defaults/main.yml and without modifying local_setting template this is OK
It seems the way contrail ansible deployer generate kolla_globals variable file is the problem. Has someone a clue to avoid this problem ?
The text was updated successfully, but these errors were encountered: