stable/queens release patch

Change-Id: I9710c729eed167e072f0e03cb91e4a004f7264ab
This commit is contained in:
Samuel Cassiba 2018-07-26 20:37:28 -07:00
parent 3ee1872f7f
commit ded15f2b28
3 changed files with 8 additions and 4 deletions

View File

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

View File

@ -4,11 +4,14 @@ source 'https://supermarket.chef.io'
if Dir.exist?("../cookbook-openstack-#{cookbook}")
cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}"
else
cookbook "openstack-#{cookbook}", git: "https://git.openstack.org/openstack/cookbook-openstack-#{cookbook}"
cookbook "openstack-#{cookbook}", git: "https://git.openstack.org/openstack/cookbook-openstack-#{cookbook}", branch: 'stable/queens'
end
end
cookbook 'openstackclient',
github: 'cloudbau/cookbook-openstackclient'
if Dir.exist?('../cookbook-openstackclient')
cookbook 'openstackclient', path: '../cookbook-openstackclient'
else
cookbook 'openstackclient', git: 'https://git.openstack.org/openstack/cookbook-openstackclient', branch: 'stable/queens'
end
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/queens/bootstrap.sh \
--retry 3 \
--silent \
--show-error \