stable/queens release patch

Change-Id: I045c6591d59db370c494bd73baab3fb984a5e2d2
This commit is contained in:
Samuel Cassiba 2018-07-26 20:38:02 -07:00
parent 94e56a4138
commit 09047868e2
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-telemetry.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 \