added user-domain-name config

This commit is contained in:
Junaid Ali 2016-05-23 03:21:51 -04:00
parent 2bd6e0690f
commit 0b357bb262
3 changed files with 7 additions and 0 deletions

View File

@ -49,3 +49,8 @@ options:
default: None
description: |
Proxy address to install python modules behind a proxy
user-domain-name:
type: string
default: Default
description: |
Keystone user domain name

View File

@ -118,6 +118,7 @@ class NeutronPGPluginContext(context.NeutronContext):
pg_ctxt['pg_metadata_port'] = '8775'
pg_ctxt['metadata_mode'] = 'tunnel'
pg_ctxt['connector_type'] = config('connector-type')
pg_ctxt['user_domain_name'] = config('user-domain-name')
if enable_metadata:
plumgrid_edge_ctxt = _edge_context()
pg_ctxt['nova_metadata_proxy_secret'] = \

View File

@ -59,4 +59,5 @@ admin_password = {{ admin_password }}
admin_tenant_name = {{ admin_tenant_name }}
auth_uri = {{ service_protocol }}://{{ auth_host }}:{{ auth_port }}/v2.0/
identity_version = v2.0
user_domain_name = {{ user_domain_name }}
{% endif -%}