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: Id9c6733690001290e94c5d8e04a96c149c151468
This commit is contained in:
parent
35bf220a37
commit
9567116722
43
CHANGELOG.md
43
CHANGELOG.md
@ -1,3 +1,46 @@
|
||||
##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
|
||||
- update rpc_backend default parameter
|
||||
- cleanup configure_delegated_roles deprecated parameter
|
||||
|
||||
####Features
|
||||
- add support for RabbitMQ connection heartbeat
|
||||
- keystone/auth: make service description configurable
|
||||
- add tag to package and service resources
|
||||
- add heat::config class
|
||||
- expose RPC response timeout as a puppet parameter
|
||||
- support setting instance_user to an empty string
|
||||
- add heat::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
|
||||
- add rabbit_ha_queues option
|
||||
- improve heat::keystone::domain
|
||||
- remove POSIX users, groups, and file modes
|
||||
- use postgresql lib class for psycopg package
|
||||
- move deps & external hooks into a standalone class
|
||||
- introduce heat::db class
|
||||
- make the role for heat_stack_user configurable
|
||||
- allow to not manage Keystone domain
|
||||
- add hooks for external install & svc management
|
||||
|
||||
####Bugfixes
|
||||
- rely on autorequire for config resource ordering
|
||||
- fix up doc string for workers variable
|
||||
|
||||
####Maintenance
|
||||
- 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
|
||||
|
||||
##2015-10-14 - 6.1.0
|
||||
###Summary
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
puppet-heat
|
||||
=============
|
||||
|
||||
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-heat",
|
||||
"version": "6.1.0",
|
||||
"version": "7.0.0",
|
||||
"author": "eNovance and OpenStack Contributors",
|
||||
"summary": "Puppet module for OpenStack Heat",
|
||||
"license": "Apache-2.0",
|
||||
@ -32,8 +32,8 @@
|
||||
"description": "Installs and configures OpenStack Heat (Orchestration).",
|
||||
"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.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…
Reference in New Issue
Block a user