From 58e8d870bc1eea3211ed9cb7a2601bb27b6653c2 Mon Sep 17 00:00:00 2001 From: Bjoern Teipel Date: Fri, 4 Mar 2016 12:25:17 -0600 Subject: [PATCH] Fix auth_url for nova configuration This fix removes the invalid configuration for auth_url which was configured to use a URI (keystone_service_adminuri) rather than then a valid Keystone URL. Additionally the options is not necessary according http://docs.openstack.org/liberty/config-reference/content/list-of-compute-config-options.html Change-Id: I5ad996a39263d0b66ab923c38d8b6cf656929210 Related-Bug: #1552394 --- templates/nova.conf.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/templates/nova.conf.j2 b/templates/nova.conf.j2 index d083117a..26c06615 100644 --- a/templates/nova.conf.j2 +++ b/templates/nova.conf.j2 @@ -192,7 +192,6 @@ workers = {{ nova_conductor_workers | default(api_threads) }} insecure = {{ keystone_service_internaluri_insecure | bool }} auth_plugin = {{ nova_keystone_auth_plugin }} signing_dir = {{ nova_system_home_folder }}/cache/api -auth_url = {{ keystone_service_adminuri }} auth_uri = {{ keystone_service_internaluri }} project_domain_id = {{ nova_service_project_domain_id }} user_domain_id = {{ nova_service_user_domain_id }}