stable/pike release

Change-Id: I38749ebe4ec4501156c3aa62fc2a0ec6b66ee2dc
This commit is contained in:
Samuel Cassiba 2018-02-23 07:43:01 -08:00
parent f83d415602
commit 9524c609a6
4 changed files with 15 additions and 8 deletions

2
.gitignore vendored
View File

@ -4,6 +4,6 @@ berks-cookbooks/
.vagrant
.coverage/
*.swp
Berksfile.lock
Vagrantfile
Gemfile.lock
Berksfile.lock

View File

@ -2,3 +2,4 @@
host=review.openstack.org
port=29418
project=openstack/cookbook-openstack-orchestration.git
defaultbranch=stable/pike

View File

@ -1,10 +1,16 @@
source 'https://supermarket.chef.io'
metadata
%w(common identity).each do |cookbook|
if Dir.exist?("../cookbook-openstack-#{cookbook}")
cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}"
else
cookbook "openstack-#{cookbook}", github: "openstack/cookbook-openstack-#{cookbook}",
branch: 'stable/pike'
end
end
cookbook 'openstack-identity',
github: 'openstack/cookbook-openstack-identity'
cookbook 'openstack-common',
github: 'openstack/cookbook-openstack-common'
cookbook 'openstackclient',
github: 'cloudbau/cookbook-openstackclient'
github: 'cloudbau/cookbook-openstackclient',
branch: 'stable/pike'
metadata

View File

@ -2,7 +2,7 @@
## This script is for installing all the needed packages on trusty to run the chef tests with 'chef exec rake'.
## It relies on the common bootstrap.sh from openstack/cookbook-openstack-common for installing common dependencies.
curl https://raw.githubusercontent.com/openstack/cookbook-openstack-common/master/bootstrap.sh \
curl https://raw.githubusercontent.com/openstack/cookbook-openstack-common/stable/pike/bootstrap.sh \
--retry 3 \
--silent \
--show-error \