release: prepare 7.0.0 (liberty)
This patch prepares this Puppet module to be released in 7.x series (Liberty) with 7.0.0. Change-Id: Icb662a66d2fec5488e0894e90763df0a327ce87d
This commit is contained in:
parent
5d42ed5671
commit
f7ae97b628
60
CHANGELOG.md
60
CHANGELOG.md
@ -1,3 +1,63 @@
|
||||
##2015-11-25 - 7.0.0
|
||||
###Summary
|
||||
|
||||
This is a backwards-incompatible major release for OpenStack Liberty.
|
||||
|
||||
####Backwards-incompatible changes
|
||||
- change section name for AMQP qpid parameters
|
||||
- change section name for AMQP rabbit parameters
|
||||
- remove deprecated mysql_module
|
||||
- do not manage python-greenlet anymore
|
||||
- rabbitmq: do not manage rabbitmq service anymore
|
||||
- remove openstackocci installation feature
|
||||
- enable nova service by default
|
||||
|
||||
####Features
|
||||
- add tag to package and service resources
|
||||
- add nova::db::sync
|
||||
- add an ability to manage use_stderr parameter
|
||||
- reflect provider change in puppet-openstacklib
|
||||
- add nameservers (dns) parameters
|
||||
- move os_region_name config option
|
||||
- use auth_nova method to create nova network
|
||||
- api: add default_floating_pool parameter
|
||||
- db: Use postgresql lib class for psycopg package
|
||||
- add support for RabbitMQ connection heartbeat
|
||||
- move cinder_catalog_info to init
|
||||
- don't add non-existent hosts to host aggregates
|
||||
- make libvirt migration security configurable
|
||||
- add region support to nova providers
|
||||
- floating IP range support in Nova network
|
||||
- rename neuton/url_timeout to neutron/timeout
|
||||
- add upgrade_levels configuration options
|
||||
- switch nova to leverage os_package_type fact
|
||||
- use os_package_type for libvirt service name
|
||||
- making instance_name_template configurable
|
||||
- remove POSIX users, groups, and file modes
|
||||
- allows the modification of the nova-api ports
|
||||
- put all the logging related parameters to the logging class
|
||||
- add kombu_reconnect_delay option
|
||||
- update nova::db class to match other module pattern
|
||||
- volume: allow to change catalog_info
|
||||
- add config_drive_format option to nova_compute
|
||||
- handle libvirt/cpu_model option
|
||||
- add ability to set default baremetal filters
|
||||
|
||||
####Bugfixes
|
||||
- rely on autorequire for config resource ordering
|
||||
- avoid empty notification driver
|
||||
- fixed issue with rabbit_hosts parameter
|
||||
- docfix: update default image_service param in doc
|
||||
|
||||
####Maintenance
|
||||
- fix rspec 3.x syntax
|
||||
- acceptance: enable debug & verbosity for OpenStack logs
|
||||
- initial msync run for all Puppet OpenStack modules
|
||||
- try to use zuul-cloner to prepare fixtures
|
||||
- remove class_parameter_defaults puppet-lint check
|
||||
- acceptance: use common bits from puppet-openstack-integration
|
||||
- spec: enable webmock connect to IPv4 link-local
|
||||
|
||||
##2015-10-10 - 6.1.0
|
||||
###Summary
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
nova
|
||||
====
|
||||
|
||||
6.1.0 - 2015.1 - Kilo
|
||||
7.0.0 - 2015.2.0 - Liberty
|
||||
|
||||
#### Table of Contents
|
||||
|
||||
|
2
Rakefile
2
Rakefile
@ -58,7 +58,7 @@ task :spec_prep do
|
||||
zuul_clone_cmd += ['git://git.openstack.org', "#{repo}"]
|
||||
sh(*zuul_clone_cmd)
|
||||
else
|
||||
sh("git clone https://git.openstack.org/#{repo} #{repo}")
|
||||
sh("git clone https://git.openstack.org/#{repo} -b stable/liberty #{repo}")
|
||||
end
|
||||
script = ['env']
|
||||
script += ["PUPPETFILE_DIR=#{Dir.pwd}/spec/fixtures/modules"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "openstack-nova",
|
||||
"version": "6.1.0",
|
||||
"version": "7.0.0",
|
||||
"author": "Puppet Labs and OpenStack Contributors",
|
||||
"summary": "Puppet module for OpenStack Nova",
|
||||
"license": "Apache-2.0",
|
||||
@ -33,12 +33,12 @@
|
||||
"dependencies": [
|
||||
{ "name": "dprince/qpid", "version_requirement": ">=1.0.0 <2.0.0" },
|
||||
{ "name": "duritong/sysctl", "version_requirement": ">=0.0.1 <1.0.0" },
|
||||
{ "name": "openstack/cinder", "version_requirement": ">=6.0.0 <7.0.0" },
|
||||
{ "name": "openstack/glance", "version_requirement": ">=6.0.0 <7.0.0" },
|
||||
{ "name": "openstack/cinder", "version_requirement": ">=7.0.0 <8.0.0" },
|
||||
{ "name": "openstack/glance", "version_requirement": ">=7.0.0 <8.0.0" },
|
||||
{ "name": "puppetlabs/inifile", "version_requirement": ">=1.0.0 <2.0.0" },
|
||||
{ "name": "openstack/keystone", "version_requirement": ">=6.0.0 <7.0.0" },
|
||||
{ "name": "openstack/keystone", "version_requirement": ">=7.0.0 <8.0.0" },
|
||||
{ "name": "puppetlabs/rabbitmq", "version_requirement": ">=2.0.2 <6.0.0" },
|
||||
{ "name": "puppetlabs/stdlib", "version_requirement": ">=4.0.0 <5.0.0" },
|
||||
{ "name": "openstack/openstacklib", "version_requirement": ">=6.0.0 <7.0.0" }
|
||||
{ "name": "openstack/openstacklib", "version_requirement": ">=7.0.0 <8.0.0" }
|
||||
]
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ RSpec.configure do |c|
|
||||
zuul_clone_cmd += "git://git.openstack.org #{repo}"
|
||||
on host, zuul_clone_cmd
|
||||
else
|
||||
on host, "git clone https://git.openstack.org/#{repo} #{repo}"
|
||||
on host, "git clone https://git.openstack.org/#{repo} -b stable/liberty #{repo}"
|
||||
end
|
||||
|
||||
on host, "ZUUL_REF=#{zuul_ref} ZUUL_BRANCH=#{zuul_branch} ZUUL_URL=#{zuul_url} bash #{repo}/install_modules.sh"
|
||||
|
Loading…
x
Reference in New Issue
Block a user