Updated berkshelf to 3.1.5

Updated berkshelf from 2.0.18 to 3.1.5 in Gemfile and added supermarket source to Berksfile

Change-Id: Ib14227aa6e527e29649906087dc1a6e6872a1441
Implements: blueprint update-berkshelf
This commit is contained in:
Jan Klare 2014-08-15 12:19:06 +02:00
parent a689c6741c
commit 9592e177a5
4 changed files with 10 additions and 7 deletions

View File

@ -1,12 +1,14 @@
source "https://supermarket.getchef.com"
metadata
cookbook "openstack-common",
git: "git://github.com/stackforge/cookbook-openstack-common.git"
github: "stackforge/cookbook-openstack-common"
cookbook "openstack-identity",
git: "git://github.com/stackforge/cookbook-openstack-identity.git"
github: "stackforge/cookbook-openstack-identity"
cookbook "openstack-compute",
git: "git://github.com/stackforge/cookbook-openstack-compute.git"
github: "stackforge/cookbook-openstack-compute"
cookbook "openstack-image",
git: "git://github.com/stackforge/cookbook-openstack-image.git"
github: "stackforge/cookbook-openstack-image"
cookbook "openstack-network",
git: "git://github.com/stackforge/cookbook-openstack-network.git"
github: "stackforge/cookbook-openstack-network"

View File

@ -6,6 +6,7 @@ This file is used to list changes made in each version of the openstack-metering
* Support vmware hypervisor
* Sync conf files with Juno
* Set os_region_name properly
* Upgrading berkshelf from 2.0.18 to 3.1.5
## 10.0.0
* Upgrading to Juno

View File

@ -2,7 +2,7 @@ source 'https://rubygems.org'
gem 'chef', '~> 11.12.0'
gem 'json', '<= 1.7.7' # chef 11 dependency
gem 'berkshelf', '~> 2.0.18'
gem 'berkshelf', '~> 3.1.5'
gem 'hashie', '~> 2.0'
gem 'chefspec', '~> 4.0.0'
gem 'rspec', '~> 3.0.0'

View File

@ -11,7 +11,7 @@ To run all of the tests with Strainer:
Or you may run the tests individually:
$ bundle install --path=.bundle # install gem dependencies
$ bundle exec berks install --path=.cookbooks # install cookbook dependencies
$ bundle exec berks vendor .cookbooks # install cookbook dependencies and creates the folder .cookbooks
$ bundle exec strainer test -s Strainerfile # run tests
## Rubocop ##