Data Bag items must have an id matching /^[\.\-[:alnum:]_]+$/

Data Bag items must have an id matching /^[\.\-[:alnum:]_]+$/
But in recipes/api.rb file, it is "service:glance".

Change-Id: I0aef71c10cc6d7ca30d58c168044c4dbbcfafad1
Closes-bug: 1319286
This commit is contained in:
Chen Zhiwei 2014-05-14 03:22:09 -04:00
parent 77110c83e6
commit d7c959610e
3 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,11 @@
# CHANGELOG for cookbook-openstack-image
This file is used to list changes made in each version of cookbook-openstack-image.
## 9.1.1
### Bug
* Fix data bag item id issue in recipes/api.rb
## 9.1.0
### Blue print
* Get VMware vCenter password from databag

View File

@ -3,7 +3,7 @@ maintainer 'Opscode, Inc.'
license 'Apache 2.0'
description 'Installs and configures the Glance Image Registry and Delivery Service'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '9.1.0'
version '9.1.1'
recipe 'openstack-image::api', 'Installs packages required for a glance api server'
recipe 'openstack-image::client', 'Install packages required for glance client'
recipe 'openstack-image::registry', 'Installs packages required for a glance registry server'

View File

@ -140,7 +140,7 @@ api_bind = endpoint 'image-api-bind'
# Rackspace Cloud Files.
if glance['api']['swift_store_auth_address'].nil?
swift_store_auth_address = auth_uri
swift_store_user = "#{glance['service_tenant_name']}:#{glance['service_user']}"
swift_store_user = "#{glance['service_tenant_name']}_#{glance['service_user']}"
swift_user_tenant = nil
swift_store_key = service_pass
swift_store_auth_version = 2