Add notification_topics attribute to network

This change adds the notification_topics attribute for the network
cookbook.  This commit will need to be merged before
https://review.openstack.org/#/c/75910/.

Change-Id: I65d24bf5c981e3540b1a530f7343983b6c513cc2
This commit is contained in:
Matt Thompson
2014-02-25 10:11:17 +00:00
parent 8d0440a59d
commit 64b61d0db8
3 changed files with 9 additions and 1 deletions

View File

@@ -2,6 +2,10 @@
This file is used to list changes made in each version of cookbook-openstack-common. This file is used to list changes made in each version of cookbook-openstack-common.
## 8.2.1
### Bug
* Add notification_topics attribute to network attributes
## 8.2.0 ## 8.2.0
* Update and add new attributes for openstack-network cookbook * Update and add new attributes for openstack-network cookbook

View File

@@ -104,3 +104,7 @@ default['openstack']['mq']['image']['qpid']['notification_topic'] =
node['openstack']['mq']['image']['notification_topic'] node['openstack']['mq']['image']['notification_topic']
default['openstack']['mq']['image']['rabbit']['notification_topic'] = default['openstack']['mq']['image']['rabbit']['notification_topic'] =
node['openstack']['mq']['image']['notification_topic'] node['openstack']['mq']['image']['notification_topic']
# network
# AMQP topics used for openstack notifications, can be comma-separated values
default['openstack']['mq']['network']['notification_topics'] = 'notifications'

View File

@@ -4,7 +4,7 @@ maintainer_email 'cookbooks@lists.tfoundry.com'
license 'Apache 2.0' license 'Apache 2.0'
description 'Common OpenStack attributes, libraries and recipes.' description 'Common OpenStack attributes, libraries and recipes.'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '8.2.0' version '8.2.1'
recipe 'openstack-common', 'Installs/Configures common recipes' recipe 'openstack-common', 'Installs/Configures common recipes'
recipe 'openstack-common::set_endpoints_by_interface', 'Set endpoints by interface' recipe 'openstack-common::set_endpoints_by_interface', 'Set endpoints by interface'