stable/rocky release patch

Change-Id: Idce12ce34b5e71e8a1a6b2bb0c8b438f7c35d484
Partial-Bug: 1855878
This commit is contained in:
Dr. Jens Harbott 2019-12-10 12:54:27 +00:00
parent 8ed82d41ad
commit bd0e51483e
3 changed files with 7 additions and 3 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.opendev.org
port=29418
project=openstack/cookbook-openstack-integration-test.git
defaultbranch=stable/rocky

View File

@ -4,7 +4,9 @@ source 'https://supermarket.chef.io'
if Dir.exist?("../cookbook-openstack-#{cookbook}")
cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}"
else
cookbook "openstack-#{cookbook}", git: "https://opendev.org/openstack/cookbook-openstack-#{cookbook}"
cookbook "openstack-#{cookbook}",
git: "https://opendev.org/openstack/cookbook-openstack-#{cookbook}",
branch: 'stable/rocky'
end
end
@ -13,7 +15,8 @@ if Dir.exist?('../cookbook-openstackclient')
path: '../cookbook-openstackclient'
else
cookbook 'openstackclient',
git: 'https://opendev.org/openstack/cookbook-openstackclient'
git: 'https://opendev.org/openstack/cookbook-openstackclient',
branch: 'stable/rocky'
end
metadata