2325d92071
- Replace git.openstack.org with opendev.org - Update some documentation - Move README.md to README.rst for better rendering - Drop obsolete bootstrap.sh script Change-Id: I3331a19d1106a817e3e25a6520a8c6c1dde338ff
32 lines
1.1 KiB
Ruby
32 lines
1.1 KiB
Ruby
name 'openstack-block-storage'
|
|
maintainer 'Chef OpenStack'
|
|
maintainer_email 'openstack-discuss@lists.openstack.org'
|
|
license 'Apache-2.0'
|
|
description 'The OpenStack Advanced Volume Management service Cinder.'
|
|
version '18.0.0'
|
|
|
|
recipe 'api', 'Installs the cinder-api and sets up the cinder database'
|
|
recipe 'backup', 'Installs the cinder-backup service'
|
|
recipe 'cinder-common', 'Defines the common pieces of repeated code from the other recipes'
|
|
recipe 'identity_registration', 'Defines the cinder service/user/endpoints in keystone'
|
|
recipe 'scheduler', 'Installs the cinder-scheduler service'
|
|
recipe 'volume_driver_lvm', 'Configures lvm as the cinder storage backend'
|
|
recipe 'volume', 'Installs the cinder-volume service'
|
|
|
|
%w(ubuntu redhat centos).each do |os|
|
|
supports os
|
|
end
|
|
|
|
depends 'openstack-common', '>= 18.0.0'
|
|
depends 'openstack-identity', '>= 18.0.0'
|
|
depends 'openstack-image', '>= 18.0.0'
|
|
depends 'openstackclient'
|
|
|
|
depends 'apache2', '5.0.1'
|
|
depends 'lvm'
|
|
depends 'selinux'
|
|
|
|
issues_url 'https://launchpad.net/openstack-chef'
|
|
source_url 'https://opendev.org/openstack/cookbook-openstack-block-storage'
|
|
chef_version '>= 14.0'
|