Skip to content
Snippets Groups Projects
Commit dd10b8a2 authored by Xavier Lange's avatar Xavier Lange Committed by Brad Beam
Browse files

Bug fix: support kilo's keystone requirement for domain-name, extracts from ENV var

parent 27b4e61c
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ openstack_username: "{{ lookup('env','OS_USERNAME') }}" ...@@ -28,6 +28,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')|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') }}"
# Container Linux by CoreOS cloud init config file to define /etc/resolv.conf content # Container Linux by CoreOS cloud init config file to define /etc/resolv.conf content
# for hostnet pods and infra needs # for hostnet pods and infra needs
......
...@@ -4,3 +4,4 @@ username={{ openstack_username }} ...@@ -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 }}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment