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
This commit is contained in:
Jesse Pretorius 2016-05-31 13:04:06 +01:00
parent 336d8daead
commit 729c06cb08
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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``.