Bug fix: support kilo's keystone requirement for domain-name, extracts from ENV var
This commit is contained in:
parent
1df50adc1c
commit
7ba1a5f45f
2 changed files with 3 additions and 1 deletions
|
@ -25,6 +25,7 @@ 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') }}"
|
openstack_tenant_id: "{{ lookup('env','OS_TENANT_ID') }}"
|
||||||
|
openstack_domain_name: "{{ lookup('env','OS_USER_DOMAIN_NAME') }}"
|
||||||
|
|
||||||
# All clients access each node individually, instead of using a load balancer.
|
# All clients access each node individually, instead of using a load balancer.
|
||||||
etcd_multiaccess: true
|
etcd_multiaccess: true
|
||||||
|
|
|
@ -4,3 +4,4 @@ username={{ openstack_username }}
|
||||||
password={{ openstack_password }}
|
password={{ openstack_password }}
|
||||||
region={{ openstack_region }}
|
region={{ openstack_region }}
|
||||||
tenant-id={{ openstack_tenant_id }}
|
tenant-id={{ openstack_tenant_id }}
|
||||||
|
domain-name={{ openstack_domain_name }}
|
||||||
|
|
Loading…
Reference in a new issue