7a22416324
The bind cookbook has been migrated to the Sous Chefs and a new release has finally been done which removes the need to have this in the pointer (which is now broken). In addition: - Disable voting for other issues that need to be addressed - Add CHEF_PRODUCT_NAME env var to kitchen.yml to allow users of Cinc to use it more easily Change-Id: I2a58f3633f0e5cd2457ebcb09feaa3c848a7513c Signed-off-by: Lance Albertson <lance@osuosl.org>
35 lines
796 B
Ruby
35 lines
796 B
Ruby
source 'https://supermarket.chef.io'
|
|
|
|
solver :ruby, :required
|
|
|
|
%w(
|
|
bare-metal
|
|
block-storage
|
|
common
|
|
compute
|
|
dashboard
|
|
dns
|
|
identity
|
|
image
|
|
integration-test
|
|
network
|
|
ops-database
|
|
ops-messaging
|
|
orchestration
|
|
telemetry
|
|
).each do |cookbook|
|
|
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}"
|
|
end
|
|
end
|
|
|
|
if Dir.exist?('../cookbook-openstackclient')
|
|
cookbook 'openstackclient', path: '../cookbook-openstackclient'
|
|
else
|
|
cookbook 'openstackclient', git: 'https://opendev.org/openstack/cookbook-openstackclient'
|
|
end
|
|
|
|
cookbook 'openstack_test', path: 'test/cookbooks/openstack_test'
|