Change the specs for reverting cinder api to v1

Since there are many problems when applying cinder v2 api, like
cannot attach volumes to VM from nova, and there may be other
problems in glance, the integration of cinder v2 api and
other services is not well tested and the related configurations
are not clear. We'd better revert the cinder api version back to
v1 before all things are clear.

This patch may break cookbook-openstack-block-storage unless the
patch https://review.openstack.org/#/c/132517/ is merged.

Closes-bug: #1388741
Change-Id: I39cd138fe7cb6fe685df12403ff81aad8906d134
This commit is contained in:
Jun Hong Li 2014-11-03 15:56:26 +08:00
parent 30c11ab426
commit 6cbd72035b
1 changed files with 6 additions and 6 deletions

View File

@ -33,9 +33,9 @@ describe 'openstack-block-storage::identity_registration' do
service_type: 'volume',
service_description: 'Cinder Volume Service',
endpoint_region: 'RegionOne',
endpoint_adminurl: 'http://127.0.0.1:8776/v2/%(tenant_id)s',
endpoint_internalurl: 'http://127.0.0.1:8776/v2/%(tenant_id)s',
endpoint_publicurl: 'http://127.0.0.1:8776/v2/%(tenant_id)s'
endpoint_adminurl: 'http://127.0.0.1:8776/v1/%(tenant_id)s',
endpoint_internalurl: 'http://127.0.0.1:8776/v1/%(tenant_id)s',
endpoint_publicurl: 'http://127.0.0.1:8776/v1/%(tenant_id)s'
)
end
@ -50,9 +50,9 @@ describe 'openstack-block-storage::identity_registration' do
service_type: 'volume',
service_description: 'Cinder Volume Service',
endpoint_region: 'RegionOne',
endpoint_adminurl: 'http://127.0.0.1:8776/v2/%(tenant_id)s',
endpoint_internalurl: 'http://127.0.0.1:8776/v2/%(tenant_id)s',
endpoint_publicurl: 'http://127.0.0.1:8776/v2/%(tenant_id)s'
endpoint_adminurl: 'http://127.0.0.1:8776/v1/%(tenant_id)s',
endpoint_internalurl: 'http://127.0.0.1:8776/v1/%(tenant_id)s',
endpoint_publicurl: 'http://127.0.0.1:8776/v1/%(tenant_id)s'
)
end