
Depends-On: https://review.opendev.org/c/openstack/cookbook-openstack-image/+/834239 Signed-off-by: Lance Albertson <lance@osuosl.org> Change-Id: I5058096451d01dc2eaf3ad1d588ccbc9933dcb2c
26 lines
650 B
Ruby
26 lines
650 B
Ruby
source 'https://supermarket.chef.io'
|
|
|
|
solver :ruby, :required
|
|
|
|
[
|
|
%w(client dep),
|
|
%w(-common dep),
|
|
%w(-dns integration),
|
|
%w(-identity dep),
|
|
%w(-image dep),
|
|
%w(-integration-test integration),
|
|
%w(-network integration),
|
|
%w(-ops-database integration),
|
|
%w(-ops-messaging integration),
|
|
].each do |cookbook, group|
|
|
if Dir.exist?("../cookbook-openstack#{cookbook}")
|
|
cookbook "openstack#{cookbook}", path: "../cookbook-openstack#{cookbook}", group: group
|
|
else
|
|
cookbook "openstack#{cookbook}", git: "https://opendev.org/openstack/cookbook-openstack#{cookbook}",
|
|
group: group,
|
|
branch: 'stable/train'
|
|
end
|
|
end
|
|
|
|
metadata
|