Files
openstack-chef/Berksfile
Samuel Cassiba 810b25f009 Finalize rename from openstack-chef-repo to openstack-chef
Change-Id: I736c13c0b366bd34092e07d504804f409f91772a
2018-09-01 00:13:48 -07:00

29 lines
693 B
Ruby

source 'https://supermarket.chef.io'
%w(
integration-test
orchestration
telemetry
block-storage
common
compute
dashboard
dns
identity
image
network
ops-database
ops-messaging
).each do |cookbook|
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}",
branch: 'stable/pike'
end
end
cookbook 'openstackclient', git: 'https://git.openstack.org/openstack/cookbook-openstackclient', branch: 'stable/pike'
cookbook 'statsd', github: 'librato/statsd-cookbook'