Updated to match semver and release notes.

Before this update the Modulefile was not following semver in
relation to stable/havana, and the README files were not in sync.
This update introduces proper semver and consistency.

Change-Id: If4f653a5288b9cca42eb45f5dbd057fd01313a81
This commit is contained in:
Chris Hoge
2014-03-21 16:16:40 -07:00
parent f854ca4e49
commit 4622537c7d
2 changed files with 37 additions and 10 deletions

View File

@@ -1,19 +1,19 @@
name 'puppetlabs-nova'
version '2.2.0'
version '4.0.0-devel'
source 'https://github.com/stackforge/puppet-nova'
author 'Puppet Labs'
license 'Apache License 2.0'
summary 'Puppet Labs Nova Module'
description 'Puppet module to install and configure the OpenStack Nova compute service'
project_page 'https://launchpad.net/puppet-openstack'
project_page 'https://launchpad.net/puppet-nova'
## Add dependencies, if any:
dependency 'puppetlabs/glance', '>=2.2.0 <3.0.0'
dependency 'puppetlabs/keystone', '>=2.2.0 <3.0.0'
dependency 'puppetlabs/cinder', '>=2.2.0 <3.0.0'
dependency 'puppetlabs/mysql', '>=0.6.1 <1.0.0'
dependency 'puppetlabs/rabbitmq', '>=2.0.2 <3.0.0'
dependency 'puppetlabs/stdlib', '>=2.5.0'
dependency 'duritong/sysctl', '>=0.0.1 <1.0.0'
dependency 'puppetlabs/inifile', '>=1.0.0 <2.0.0'
dependency 'dprince/qpid', '>= 1.0.0 <2.0.0'
dependency 'duritong/sysctl', '>=0.0.1 <1.0.0'
dependency 'puppetlabs/cinder', '>=4.0.0 <5.0.0'
dependency 'puppetlabs/glance', '>=4.0.0 <5.0.0'
dependency 'puppetlabs/inifile', '>=1.0.0 <2.0.0'
dependency 'puppetlabs/keystone', '>=4.0.0 <5.0.0'
dependency 'puppetlabs/mysql', '>=0.9.0 <1.0.0'
dependency 'puppetlabs/rabbitmq', '>=2.0.2 <3.0.0'
dependency 'puppetlabs/stdlib', '>=3.2.0'

View File

@@ -88,6 +88,33 @@ Contributors
Release Notes
-------------
**3.2.0**
* Replace pip with native package manager for VMWare.
* Deprecated logdir parameter in favor of log_dir.
* Allows log_dir to be set to false in order to disable file logging.
* Enables libvirt at boot.
* Adds RBD backend support for VM image storage.
* Parameterizes libvirt cpu_mode and disk_cachemodes.
* Adds support for https auth endpoints.
* Adds ability to disable installation of nova utilities.
**3.1.0**
* Minor release for OpenStack Havana.
* Add libguestfs-tools package to nova utilities.
* Fixed vncproxy package naming for Ubuntu.
* Fixed libvirt configuration.
**3.0.0**
* Major release for OpenStack Havana.
* Removed api-paste.ini configuration.
* Adds support for live migrations with using the libvirt Nova driver.
* Fixed bug to ensure keystone endpoint is set before service is started.
* Fixed nova-spiceproxy support on Ubuntu.
* Added support for VMWareVCDriver.
**2.2.0**
* Added a check to install bridge-utils only if needed.