Merge "Correct nova admin endpoint version"

This commit is contained in:
Jenkins 2016-05-31 19:28:16 +00:00 committed by Gerrit Code Review
commit 413c7c804a
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``.