Files
cookbook-openstack-block-st…/metadata.rb
John Dewey 3edd2feeba Removed db recipe
The db recipe have been removed. It is up to the operator to
setup the database, users, and grants before deploying openstack.
It has been moved to the `openstack-db` recipe in the
`openstack-ops-database` wrapper cookbook.

Change-Id: Ic9467b2473b9c5eea6dd4f74c9d5f83f47e86814
2013-06-28 11:24:31 -07:00

26 lines
1.2 KiB
Ruby

name "openstack-block-storage"
maintainer "AT&T Services, Inc."
maintainer_email "cookbooks@lists.tfoundry.com"
license "Apache 2.0"
description "The OpenStack Advanced Volume Management service Cinder."
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "7.0.0"
recipe "openstack-block-storage::common", "Defines the common pieces of repeated code from the other recipes"
recipe "openstack-block-storage::api", "Installs the cinder-api, sets up the cinder database, and cinder service/user/endpoints in keystone"
recipe "openstack-block-storage::keystone_registration", "Registers cinder service/user/endpoints in keystone"
recipe "openstack-block-storage::scheduler", "Installs the cinder-scheduler service"
recipe "openstack-block-storage::volume", "Installs the cinder-volume service and sets up the iscsi helper"
%w{ ubuntu fedora redhat centos }.each do |os|
supports os
end
depends "apt"
depends "openstack-common", "~> 0.3.0"
depends "openstack-identity", "~> 7.0.0"
depends "openstack-image", "~> 7.0.0"
depends "openssh"
depends "rabbitmq"
depends "selinux"