From 729c06cb0830d217ba8ebb92435804e09ca397f2 Mon Sep 17 00:00:00 2001 From: Jesse Pretorius Date: Tue, 31 May 2016 13:04:06 +0100 Subject: [PATCH] Correct nova admin endpoint version In Liberty the primary nova endpoints changed to v2.1, but the group_var for the nova admin endpoint was not changed appropriately. This patch corrects the endpoint version. Change-Id: If0ac2c117f36a7dada02991fbf2b6447c71f7df1 --- playbooks/inventory/group_vars/hosts.yml | 2 +- .../notes/nova-admin-endpoint-fix-d52cc00caa5ab5dd.yaml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/nova-admin-endpoint-fix-d52cc00caa5ab5dd.yaml diff --git a/playbooks/inventory/group_vars/hosts.yml b/playbooks/inventory/group_vars/hosts.yml index c1df7fb593..97e7eb2025 100644 --- a/playbooks/inventory/group_vars/hosts.yml +++ b/playbooks/inventory/group_vars/hosts.yml @@ -145,7 +145,7 @@ nova_service_project_name: service nova_service_project_domain_id: default nova_service_user_domain_id: default nova_service_adminuri: "{{ nova_service_adminuri_proto }}://{{ internal_lb_vip_address }}:{{ nova_service_port }}" -nova_service_adminurl: "{{ nova_service_adminuri }}/v2/%(tenant_id)s" +nova_service_adminurl: "{{ nova_service_adminuri }}/v2.1/%(tenant_id)s" nova_service_region: "{{ service_region }}" nova_metadata_port: 8775 nova_keystone_auth_plugin: password diff --git a/releasenotes/notes/nova-admin-endpoint-fix-d52cc00caa5ab5dd.yaml b/releasenotes/notes/nova-admin-endpoint-fix-d52cc00caa5ab5dd.yaml new file mode 100644 index 0000000000..9c66ac2f81 --- /dev/null +++ b/releasenotes/notes/nova-admin-endpoint-fix-d52cc00caa5ab5dd.yaml @@ -0,0 +1,6 @@ +--- +upgrade: + - A new nova admin endpoint will be registered with the suffix ``/v2.1/%(tenant_id)s``. The nova admin endpoint + with the suffix ``/v2/%(tenant_id)s`` may be manually removed. +fixes: + - The nova admin endpoint is now correctly registered as ``/v2.1/%(tenant_id)s`` instead of ``/v2/%(tenant_id)s``.