Merge "Expose rabbit_transient_quorum_queue"
This commit is contained in:
commit
f445dd6c14
@ -65,6 +65,10 @@
|
|||||||
# (Optional) Use quorum queues in RabbitMQ.
|
# (Optional) Use quorum queues in RabbitMQ.
|
||||||
# Defaults to $facts['os_service_default']
|
# Defaults to $facts['os_service_default']
|
||||||
#
|
#
|
||||||
|
# [*rabbit_transient_quorum_queue*]
|
||||||
|
# (Optional) Use quorum queues for transients queues in RabbitMQ.
|
||||||
|
# Defaults to $facts['os_service_default']
|
||||||
|
#
|
||||||
# [*rabbit_quorum_delivery_limit*]
|
# [*rabbit_quorum_delivery_limit*]
|
||||||
# (Optional) Each time a message is rdelivered to a consumer, a counter is
|
# (Optional) Each time a message is rdelivered to a consumer, a counter is
|
||||||
# incremented. Once the redelivery count exceeds the delivery limit
|
# incremented. Once the redelivery count exceeds the delivery limit
|
||||||
@ -240,6 +244,7 @@ class ceilometer(
|
|||||||
$notification_transport_url = $facts['os_service_default'],
|
$notification_transport_url = $facts['os_service_default'],
|
||||||
$rabbit_ha_queues = $facts['os_service_default'],
|
$rabbit_ha_queues = $facts['os_service_default'],
|
||||||
$rabbit_quorum_queue = $facts['os_service_default'],
|
$rabbit_quorum_queue = $facts['os_service_default'],
|
||||||
|
$rabbit_transient_quorum_queue = $facts['os_service_default'],
|
||||||
$rabbit_quorum_delivery_limit = $facts['os_service_default'],
|
$rabbit_quorum_delivery_limit = $facts['os_service_default'],
|
||||||
$rabbit_quorum_max_memory_length = $facts['os_service_default'],
|
$rabbit_quorum_max_memory_length = $facts['os_service_default'],
|
||||||
$rabbit_quorum_max_memory_bytes = $facts['os_service_default'],
|
$rabbit_quorum_max_memory_bytes = $facts['os_service_default'],
|
||||||
@ -306,6 +311,7 @@ class ceilometer(
|
|||||||
kombu_failover_strategy => $kombu_failover_strategy,
|
kombu_failover_strategy => $kombu_failover_strategy,
|
||||||
kombu_compression => $kombu_compression,
|
kombu_compression => $kombu_compression,
|
||||||
rabbit_quorum_queue => $rabbit_quorum_queue,
|
rabbit_quorum_queue => $rabbit_quorum_queue,
|
||||||
|
rabbit_transient_quorum_queue => $rabbit_transient_quorum_queue,
|
||||||
rabbit_quorum_delivery_limit => $rabbit_quorum_delivery_limit,
|
rabbit_quorum_delivery_limit => $rabbit_quorum_delivery_limit,
|
||||||
rabbit_quorum_max_memory_length => $rabbit_quorum_max_memory_length,
|
rabbit_quorum_max_memory_length => $rabbit_quorum_max_memory_length,
|
||||||
rabbit_quorum_max_memory_bytes => $rabbit_quorum_max_memory_bytes,
|
rabbit_quorum_max_memory_bytes => $rabbit_quorum_max_memory_bytes,
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
The new ``ceilometer::rabbit_transient_quorum_queue`` parameter has been
|
||||||
|
added.
|
@ -157,6 +157,7 @@ describe 'ceilometer' do
|
|||||||
:kombu_failover_strategy => '<SERVICE DEFAULT>',
|
:kombu_failover_strategy => '<SERVICE DEFAULT>',
|
||||||
:kombu_compression => '<SERVICE DEFAULT>',
|
:kombu_compression => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_queue => '<SERVICE DEFAULT>',
|
:rabbit_quorum_queue => '<SERVICE DEFAULT>',
|
||||||
|
:rabbit_transient_quorum_queue => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_delivery_limit => '<SERVICE DEFAULT>',
|
:rabbit_quorum_delivery_limit => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_max_memory_length => '<SERVICE DEFAULT>',
|
:rabbit_quorum_max_memory_length => '<SERVICE DEFAULT>',
|
||||||
:rabbit_quorum_max_memory_bytes => '<SERVICE DEFAULT>',
|
:rabbit_quorum_max_memory_bytes => '<SERVICE DEFAULT>',
|
||||||
|
Loading…
Reference in New Issue
Block a user