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: I67c7cefb95003539400a8176af21325d71cd4575
This commit is contained in:
parent
da26542fbb
commit
0f384787e3
41
CHANGELOG.md
41
CHANGELOG.md
@ -1,3 +1,44 @@
|
||||
##2015-11-25 - 7.0.0
|
||||
###Summary
|
||||
|
||||
This is a backwards-incompatible major release for OpenStack Liberty.
|
||||
|
||||
####Backwards-incompatible changes
|
||||
- remove deprecated mysql_module
|
||||
- change section name for AMQP qpid parameters
|
||||
- change section name for AMQP rabbit parameters
|
||||
|
||||
####Features
|
||||
- add support for RabbitMQ connection heartbeat
|
||||
- add tag to package and service resources
|
||||
- add glance::db::sync
|
||||
- add an ability to manage use_stderr parameter
|
||||
- reflect provider change in puppet-openstacklib
|
||||
- put all the logging related parameters to the logging class
|
||||
- allow customization of db sync command line
|
||||
- add S3 backend configuration for glance
|
||||
- add rados_connect_timeout parameter in glance config
|
||||
- add ability to specify number of workers for glance-registry service
|
||||
- use OpenstackClient for glance_image auth
|
||||
|
||||
####Bugfixes
|
||||
- rely on autorequire for config resource ordering
|
||||
- make sure Facter is only executed on agent
|
||||
- file backend: do not inherit from glance::api
|
||||
- glance_image: hardcode os-image-api-version to 1
|
||||
- make sure Glance_image is executed after Keystone_endpoint
|
||||
- solve duplicate declaration issue for python-openstackclient
|
||||
- append openstacklib/lib to load path for type
|
||||
|
||||
####Maintenance
|
||||
- fix rspec 3.x syntax
|
||||
- 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
|
||||
- fix unit tests against Puppet 4.3.0
|
||||
- require at least 4.2.0 of stdlib
|
||||
|
||||
##2015-10-10 - 6.1.0
|
||||
###Summary
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
glance
|
||||
=======
|
||||
|
||||
6.1.0 - 2015.1 - Kilo
|
||||
7.0.0 - 2015.2 - 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-glance",
|
||||
"version": "6.1.0",
|
||||
"version": "7.0.0",
|
||||
"author": "Puppet Labs and OpenStack Contributors",
|
||||
"summary": "Puppet module for OpenStack Glance",
|
||||
"license": "Apache-2.0",
|
||||
@ -32,8 +32,8 @@
|
||||
"description": "Installs and configures OpenStack Glance (Image Service).",
|
||||
"dependencies": [
|
||||
{ "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/stdlib", "version_requirement": ">=4.2.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…
Reference in New Issue
Block a user