dd53e39b11
Qpid messaging driver is removed from Oslo.messaging [1] Therefore, we cannot support it anymore. [1] I4a9cba314c4a2f24307504fa7b5427424268b114 Change-Id: I5a702aacf77956a6c616fd98d2f942654548f00d
37 lines
839 B
Puppet
37 lines
839 B
Puppet
# == Class: glance::notify::qpid
|
|
#
|
|
# used to configure qpid notifications for glance
|
|
# Deprecated class
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*qpid_password*]
|
|
# (required) Password to connect to the qpid server.
|
|
#
|
|
# [*qpid_username*]
|
|
# (Optional) User to connect to the qpid server.
|
|
# Defaults to 'guest'.
|
|
#
|
|
# [*qpid_hostname*]
|
|
# (Optional) IP or hostname of the qpid server.
|
|
# Defaults to 'localhost'.
|
|
#
|
|
# [*qpid_port*]
|
|
# (Optional) Port of the qpid server.
|
|
# Defaults to 5672.
|
|
#
|
|
# [*qpid_protocol*]
|
|
# (Optional) Protocol to use for qpid (tcp/ssl).
|
|
# Defaults to tcp.
|
|
#
|
|
class glance::notify::qpid(
|
|
$qpid_password = undef,
|
|
$qpid_username = undef,
|
|
$qpid_hostname = undef,
|
|
$qpid_port = undef,
|
|
$qpid_protocol = undef
|
|
) inherits glance::api {
|
|
|
|
warning('Qpid driver is removed from Oslo.messaging in the Mitaka release')
|
|
}
|