diff --git a/templates/pike/nova.conf b/templates/pike/nova.conf index 7ebc0c54..1173fb29 100644 --- a/templates/pike/nova.conf +++ b/templates/pike/nova.conf @@ -129,9 +129,21 @@ api_servers = {{ glance_api_servers }} {% if network_manager and network_manager == 'neutron' -%} [neutron] url = {{ neutron_url }} -auth_strategy = keystone -auth_section = keystone_authtoken +{% if auth_host -%} +auth_url = {{ auth_protocol }}://{{ auth_host }}:{{ auth_port }} auth_type = password +{% if admin_domain_name -%} +project_domain_name = {{ admin_domain_name }} +user_domain_name = {{ admin_domain_name }} +{% else -%} +project_domain_name = default +user_domain_name = default +{% endif -%} +project_name = {{ admin_tenant_name }} +username = {{ admin_user }} +password = {{ admin_password }} +signing_dir = {{ signing_dir }} +{% endif -%} {% endif -%} {% include "section-keystone-authtoken-mitaka" %}