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:
parent
9643c2c1e3
commit
44b9dce134
2 changed files with 4 additions and 1 deletions
|
@ -32,7 +32,8 @@ openstack_username: "{{ lookup('env','OS_USERNAME') }}"
|
||||||
openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
|
openstack_password: "{{ lookup('env','OS_PASSWORD') }}"
|
||||||
openstack_region: "{{ lookup('env','OS_REGION_NAME') }}"
|
openstack_region: "{{ lookup('env','OS_REGION_NAME') }}"
|
||||||
openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID')|default(lookup('env','OS_PROJECT_ID'),true) }}"
|
openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID')|default(lookup('env','OS_PROJECT_ID'),true) }}"
|
||||||
openstack_domain_name: "{{ lookup('env','OS_USER_DOMAIN_NAME') }}"
|
openstack_domain_name: "{{ lookup('env','OS_USER_DOMAIN_NAME') }}"
|
||||||
|
openstack_domain_id: "{{ lookup('env','OS_USER_DOMAIN_ID') }}"
|
||||||
|
|
||||||
# For the vsphere integration, kubelet will need credentials to access
|
# For the vsphere integration, kubelet will need credentials to access
|
||||||
# vsphere apis
|
# vsphere apis
|
||||||
|
|
|
@ -6,6 +6,8 @@ region="{{ openstack_region }}"
|
||||||
tenant-id="{{ openstack_tenant_id }}"
|
tenant-id="{{ openstack_tenant_id }}"
|
||||||
{% if openstack_domain_name is defined and openstack_domain_name != "" %}
|
{% if openstack_domain_name is defined and openstack_domain_name != "" %}
|
||||||
domain-name="{{ openstack_domain_name }}"
|
domain-name="{{ openstack_domain_name }}"
|
||||||
|
{% elif openstack_domain_id is defined and openstack_domain_id != "" %}
|
||||||
|
domain-id ="{{ openstack_domain_id }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if openstack_blockstorage_version is defined %}
|
{% if openstack_blockstorage_version is defined %}
|
||||||
|
|
Loading…
Reference in a new issue