- deprecated postgresql support - dropped apt cookbook dependency - deprecated node.foo.bar method access for node['foo']['bar'] bracket syntax - implemented foodcritic and cookstyle corrections - migrated cinder api to a Chef-managed config - deprecated cinder-group-active service, as it is no longer needed and gets in the way of functionality - added lvm cookbook dependency for better pv/vg handling Implements blueprint modern-chef Change-Id: Id248c9267af6750c871487bc8b577aa2011a782a
24 lines
808 B
Ruby
24 lines
808 B
Ruby
name 'openstack-block-storage'
|
|
maintainer 'Chef OpenStack'
|
|
maintainer_email 'openstack-dev@lists.openstack.org'
|
|
license 'Apache-2.0'
|
|
description 'The OpenStack Advanced Volume Management service Cinder.'
|
|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
|
version '16.0.0'
|
|
|
|
%w(ubuntu redhat centos).each do |os|
|
|
supports os
|
|
end
|
|
|
|
depends 'openstack-common', '>= 16.0.0'
|
|
depends 'openstack-identity', '>= 16.0.0'
|
|
depends 'openstack-image', '>= 16.0.0'
|
|
depends 'openstackclient'
|
|
|
|
depends 'lvm'
|
|
depends 'selinux'
|
|
|
|
issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url)
|
|
source_url 'https://github.com/openstack/cookbook-openstack-block-storage' if respond_to?(:source_url)
|
|
chef_version '>= 12.5' if respond_to?(:chef_version)
|