Default to cinder v2 api

Recently nova merged commit https://review.openstack.org/#/c/124468/
have switch to use cinder v2. Common cookbook need to be updated
for this change.

Change-Id: If2e5b8bee43ecfa44b77301be78e1854ddeb0876
This commit is contained in:
ZHU ZHU 2014-11-13 10:01:28 -06:00
parent 25c9c10c96
commit 85ec51aba7
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ This file is used to list changes made in each version of cookbook-openstack-com
* Bump Chef gem to 11.16 * Bump Chef gem to 11.16
* Fix openstack_command with correct arguments order * Fix openstack_command with correct arguments order
* Fix openstack_command with single argument type * Fix openstack_command with single argument type
* Make default using cinder v2 api
## 10.1.0 ## 10.1.0
* Adding identity admin bind host endpoint to allow flexibility and consistency * Adding identity admin bind host endpoint to allow flexibility and consistency

View File

@ -341,7 +341,7 @@ default['openstack']['endpoints']['block-storage-api-bind']['bind_interface'] =
default['openstack']['endpoints']['block-storage-api']['host'] = node['openstack']['endpoints']['host'] default['openstack']['endpoints']['block-storage-api']['host'] = node['openstack']['endpoints']['host']
default['openstack']['endpoints']['block-storage-api']['scheme'] = 'http' default['openstack']['endpoints']['block-storage-api']['scheme'] = 'http'
default['openstack']['endpoints']['block-storage-api']['port'] = '8776' default['openstack']['endpoints']['block-storage-api']['port'] = '8776'
default['openstack']['endpoints']['block-storage-api']['path'] = '/v1/%(tenant_id)s' default['openstack']['endpoints']['block-storage-api']['path'] = '/v2/%(tenant_id)s'
default['openstack']['endpoints']['block-storage-api']['bind_interface'] = nil default['openstack']['endpoints']['block-storage-api']['bind_interface'] = nil
# ******************** OpenStack Object Storage Endpoint ***************************** # ******************** OpenStack Object Storage Endpoint *****************************