mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-02-28 09:39:12 +03:00
Fix domain id for OpenStack provider
OpenStack authentication does not support using a mix of DomainID and DomainName, only one or the other should be used.
This commit is contained in:
@@ -6,6 +6,8 @@ region="{{ openstack_region }}"
|
||||
tenant-id="{{ openstack_tenant_id }}"
|
||||
{% if openstack_domain_name is defined and openstack_domain_name != "" %}
|
||||
domain-name="{{ openstack_domain_name }}"
|
||||
{% elif openstack_domain_id is defined and openstack_domain_id != "" %}
|
||||
domain-id ="{{ openstack_domain_id }}"
|
||||
{% endif %}
|
||||
|
||||
{% if openstack_blockstorage_version is defined %}
|
||||
|
||||
Reference in New Issue
Block a user