openstack-chef-repo/Berksfile

32 lines
702 B
Ruby

source 'https://supermarket.chef.io'
%w(
integration-test
orchestration
telemetry
block-storage
common
compute
dashboard
identity
image
network
ops-database
ops-messaging
).each do |cookbook|
if ENV['ZUUL_CHANGES'] && Dir.exist?("../cookbook-openstack-#{cookbook}")
cookbook "openstack-#{cookbook}", path: "../cookbook-openstack-#{cookbook}"
else
cookbook "openstack-#{cookbook}",
github: "openstack/cookbook-openstack-#{cookbook}",
branch: "stable/newton"
end
end
cookbook 'openstackclient',
github: 'cloudbau/cookbook-openstackclient',
branch: "stable/newton"
cookbook 'statsd',
github: 'att-cloud/cookbook-statsd'