Deprecate rabbitmq connection parameters
The rabbitmq connection parameters have been deprecated in favor of a transport url setting. Change-Id: I6aa29f7a70c4c1bfce8a09d8da5f88bb148d7d49 Related-Bug: #1625198
This commit is contained in:
parent
22f32f8ea1
commit
9d22a27038
@ -7,30 +7,11 @@
|
||||
#
|
||||
# == Parameters
|
||||
#
|
||||
# [*rabbit_host*]
|
||||
# (Optional) IP or hostname of the rabbit server.
|
||||
# Defaults to '127.0.0.1'.
|
||||
#
|
||||
# [*rabbit_port*]
|
||||
# (Optional) Port of the rabbit server.
|
||||
# Defaults to 5672.
|
||||
#
|
||||
# [*rabbit_hosts*]
|
||||
# (Optional) IP or hostname of the rabbits servers.
|
||||
# comma separated array (ex: ['1.0.0.10:5672','1.0.0.11:5672'])
|
||||
# Defaults to undef.
|
||||
#
|
||||
# [*rabbit_user*]
|
||||
# (Optional) Username for rabbit.
|
||||
# Defaults to 'guest'.
|
||||
#
|
||||
# [*rabbit_password*]
|
||||
# (Optional) Password for rabbit user.
|
||||
# Defaults to 'guest'.
|
||||
#
|
||||
# [*rabbit_virtual_host*]
|
||||
# (Optional) Virtual host to use.
|
||||
# Defaults to '/'.
|
||||
# [*default_transport_url*]
|
||||
# (optional) A URL representing the messaging driver to use and its full
|
||||
# configuration. Transport URLs take the form:
|
||||
# transport://user:pass@host1:port[,hostN:portN]/virtual_host
|
||||
# Defaults to $::os_service_default
|
||||
#
|
||||
# [*driver*]
|
||||
# (Optional) The Drivers(s) to handle sending notifications.
|
||||
@ -58,6 +39,33 @@
|
||||
# Whether to send events to messaging driver in a background thread
|
||||
# Defaults to false
|
||||
#
|
||||
# === DEPRECATED PARAMETERS
|
||||
#
|
||||
# [*rabbit_host*]
|
||||
# (Optional) IP or hostname of the rabbit server.
|
||||
# Defaults to '127.0.0.1'.
|
||||
#
|
||||
# [*rabbit_port*]
|
||||
# (Optional) Port of the rabbit server.
|
||||
# Defaults to 5672.
|
||||
#
|
||||
# [*rabbit_hosts*]
|
||||
# (Optional) IP or hostname of the rabbits servers.
|
||||
# comma separated array (ex: ['1.0.0.10:5672','1.0.0.11:5672'])
|
||||
# Defaults to undef.
|
||||
#
|
||||
# [*rabbit_user*]
|
||||
# (Optional) Username for rabbit.
|
||||
# Defaults to 'guest'.
|
||||
#
|
||||
# [*rabbit_password*]
|
||||
# (Optional) Password for rabbit user.
|
||||
# Defaults to 'guest'.
|
||||
#
|
||||
# [*rabbit_virtual_host*]
|
||||
# (Optional) Virtual host to use.
|
||||
# Defaults to '/'.
|
||||
#
|
||||
# == Examples
|
||||
#
|
||||
# == Authors
|
||||
@ -69,31 +77,43 @@
|
||||
# Copyright 2013 eNovance licensing@enovance.com
|
||||
#
|
||||
class swift::proxy::ceilometer(
|
||||
$rabbit_user = 'guest',
|
||||
$rabbit_password = 'guest',
|
||||
$rabbit_host = '127.0.0.1',
|
||||
$rabbit_port = '5672',
|
||||
$rabbit_hosts = undef,
|
||||
$rabbit_virtual_host = '/',
|
||||
$driver = undef,
|
||||
$topic = undef,
|
||||
$control_exchange = undef,
|
||||
$ensure = 'present',
|
||||
$group = 'ceilometer',
|
||||
$nonblocking_notify = false,
|
||||
$default_transport_url = undef,
|
||||
$driver = undef,
|
||||
$topic = undef,
|
||||
$control_exchange = undef,
|
||||
$ensure = 'present',
|
||||
$group = 'ceilometer',
|
||||
$nonblocking_notify = false,
|
||||
# DEPRECATED PARAMETERS
|
||||
$rabbit_user = 'guest',
|
||||
$rabbit_password = 'guest',
|
||||
$rabbit_host = '127.0.0.1',
|
||||
$rabbit_port = '5672',
|
||||
$rabbit_hosts = undef,
|
||||
$rabbit_virtual_host = '/',
|
||||
) inherits swift {
|
||||
|
||||
include ::swift::deps
|
||||
|
||||
if(is_array($rabbit_hosts)) {
|
||||
$rabbit_hosts_with_creds = prefix($rabbit_hosts, "${rabbit_user}:${rabbit_password}@")
|
||||
}
|
||||
|
||||
if !$rabbit_hosts {
|
||||
$url = "rabbit://${rabbit_user}:${rabbit_password}@${rabbit_host}:${rabbit_port}/${rabbit_virtual_host}"
|
||||
if $default_transport_url {
|
||||
$amqp_url = $default_transport_url
|
||||
} else {
|
||||
$hosts = join($rabbit_hosts_with_creds, ',')
|
||||
$url = "rabbit://${hosts}/${rabbit_virtual_host}"
|
||||
warning("swift::proxy::ceilometer::rabbit_host,
|
||||
swift::proxy::ceilometer::rabbit_hosts, swift::proxy::ceilometer::rabbit_password, \
|
||||
swift::proxy::ceilometer::rabbit_port, swift::proxy::ceilometer::rabbit_userid \
|
||||
and swift::proxy::ceilometer::rabbit_virtual_host are \
|
||||
deprecated. Please use swift::proxy::ceilometer::default_transport_url instead.")
|
||||
|
||||
if(is_array($rabbit_hosts)) {
|
||||
$rabbit_hosts_with_creds = prefix($rabbit_hosts, "${rabbit_user}:${rabbit_password}@")
|
||||
}
|
||||
|
||||
if !$rabbit_hosts {
|
||||
$amqp_url = "rabbit://${rabbit_user}:${rabbit_password}@${rabbit_host}:${rabbit_port}/${rabbit_virtual_host}"
|
||||
} else {
|
||||
$hosts = join($rabbit_hosts_with_creds, ',')
|
||||
$amqp_url = "rabbit://${hosts}/${rabbit_virtual_host}"
|
||||
}
|
||||
}
|
||||
|
||||
User['swift'] {
|
||||
@ -115,7 +135,7 @@ class swift::proxy::ceilometer(
|
||||
swift_proxy_config {
|
||||
'filter:ceilometer/topic': value => $topic;
|
||||
'filter:ceilometer/driver': value => $driver;
|
||||
'filter:ceilometer/url': value => $url;
|
||||
'filter:ceilometer/url': value => $amqp_url;
|
||||
'filter:ceilometer/control_exchange': value => $control_exchange;
|
||||
'filter:ceilometer/paste.filter_factory': value => 'ceilometermiddleware.swift:filter_factory';
|
||||
'filter:ceilometer/nonblocking_notify': value => $nonblocking_notify;
|
||||
|
@ -0,0 +1,10 @@
|
||||
---
|
||||
deprecations:
|
||||
- swift::proxy::ceilometer::rabbit_host,
|
||||
swift::proxy::ceilometer::rabbit_hosts,
|
||||
swift::proxy::ceilometer::rabbit_password,
|
||||
swift::proxy::ceilometer::rabbit_port,
|
||||
swift::proxy::ceilometer::rabbit_userid and
|
||||
swift::proxy::ceilometer::rabbit_virtual_host are deprecated.
|
||||
swift::proxy::ceilometer::default_transport_url should be used instead.
|
||||
|
@ -59,6 +59,14 @@ describe 'swift::proxy::ceilometer' do
|
||||
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/nonblocking_notify').with_value('true') }
|
||||
end
|
||||
|
||||
context 'with default transport url' do
|
||||
before do
|
||||
params.merge!({ :default_transport_url => 'rabbit://user:pass@host:1234/virt' })
|
||||
end
|
||||
|
||||
it { is_expected.to contain_swift_proxy_config('filter:ceilometer/url').with_value('rabbit://user:pass@host:1234/virt') }
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user