- Now use cookbook-openstackclient to create endpoints role service and user - added domain creation and access granting - added values to work with identity_v3 - rewrote specs to work again - updated readme - updated neutron-package dependencies for debian Change-Id: I2d404a424bd79a6e9b282304e21591fa33a48981 Depends-On: I0f8955f05de9b33711c54b9a198f45018cceb8e1
19 lines
679 B
Ruby
19 lines
679 B
Ruby
# Encoding: utf-8
|
|
name 'openstack-network'
|
|
maintainer 'openstack-chef'
|
|
maintainer_email 'openstack-dev@lists.openstack.org'
|
|
issues_url 'https://launchpad.net/openstack-chef' if respond_to?(:issues_url)
|
|
source_url 'https://github.com/openstack/cookbook-openstack-network' if respond_to?(:source_url)
|
|
license 'Apache 2.0'
|
|
description 'Installs and configures the OpenStack Network API Service and various agents and plugins'
|
|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
|
version '14.0.0'
|
|
|
|
%w(ubuntu redhat centos).each do |os|
|
|
supports os
|
|
end
|
|
|
|
depends 'openstack-common', '>= 14.0.0'
|
|
depends 'openstack-identity', '>= 14.0.0'
|
|
depends 'openstackclient'
|