Skip to content

Commit

Permalink
[stable/2024.1] fix: correct keystone_domains reference from horizon (#…
Browse files Browse the repository at this point in the history
…1503)

This is an automated cherry-pick of #1182
/assign mnaser
  • Loading branch information
vexxhost-bot authored Jul 4, 2024
1 parent 6e129b7 commit 978af1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/horizon/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ _horizon_helm_values:
sso:
enabled: true
initial_choice: "{{ (keystone_domains is defined) | ternary(keystone_domains[0].name, 'atmosphere') }}"
idp_mapping: "{{ keystone_domains | default([{'name': 'atmosphere', 'label': 'Atmosphere'}]) | vexxhost.atmosphere.keystone_domains_to_idp_mappings }}" # noqa: yaml[line-length]
idp_mapping: "{{ keystone_domains | default([{'name': (keystone_keycloak_realm | default('atmosphere')), 'label': (keystone_keycloak_realm_name | default('Atmosphere'))}]) | vexxhost.atmosphere.keystone_domains_to_idp_mappings }}" # noqa: yaml[line-length]
raw:
OPENSTACK_SSL_NO_VERIFY: "{{ ((cluster_issuer_type | default('self-signed')) == 'self-signed') | ternary('True', 'False') | string }}"
WEBSSO_KEYSTONE_URL: https://{{ openstack_helm_endpoints['identity']['host_fqdn_override']['public']['host'] }}/v3
Expand Down

0 comments on commit 978af1f

Please sign in to comment.