0a8901e988
amqp1 driver of the oslo.messaging library was deprecated and it is no longer tested. This replaces usage of the driver by the RabbitMQ driver. Conflicts: fixtures/scenario001.pp manifests/keystone.pp manifests/manila.pp manifests/qdr.pp Change-Id: I17666d9507564acb05a69143879ca2ec4b0bdeb0 (cherry picked from commitc1f6ba999e
) (cherry picked from commit03b5574aa4
) (cherry picked from commitd6b05a6b74
)
74 lines
1.9 KiB
Puppet
74 lines
1.9 KiB
Puppet
# Configure some common parameters
|
|
#
|
|
# [*ssl*]
|
|
# (optional) Boolean to enable or not SSL.
|
|
# Defaults to false.
|
|
#
|
|
# [*ipv6*]
|
|
# (optional) Boolean to enable or not IPv6.
|
|
# Defaults to false.
|
|
#
|
|
# [*rpc_backend*]
|
|
# (optional) The oslo.messaging backend to configure for rpc.
|
|
# Defaults to 'rabbit'.
|
|
#
|
|
# [*notify_backend*]
|
|
# (optional) The oslo.messaging backend to configure for notify.
|
|
# Defaults to 'rabbit'.
|
|
#
|
|
class openstack_integration::config (
|
|
$ssl = false,
|
|
$ipv6 = false,
|
|
$rpc_backend = 'rabbit',
|
|
$notify_backend = 'rabbit',
|
|
) {
|
|
|
|
$messaging_default_proto = $rpc_backend
|
|
$messaging_notify_proto = $notify_backend
|
|
|
|
if $ssl {
|
|
$proto = 'https'
|
|
$messaging_default_port = '5671'
|
|
$messaging_notify_port = '5671'
|
|
} else {
|
|
$proto = 'http'
|
|
$messaging_default_port = '5672'
|
|
$messaging_notify_port = '5672'
|
|
}
|
|
|
|
$rabbit_port = $messaging_notify_port
|
|
|
|
if $ipv6 {
|
|
$host = '::1'
|
|
if $rpc_backend == 'rabbit' {
|
|
$rabbit_env = {
|
|
'RABBITMQ_NODE_IP_ADDRESS' => $host,
|
|
'RABBITMQ_SERVER_START_ARGS' => '"-proto_dist inet6_tcp"',
|
|
'LC_ALL' => 'en_US.UTF-8',
|
|
}
|
|
}
|
|
$ip_version = '6'
|
|
# Note (dmsimard): ipv6 parsing in Swift and keystone_authtoken are
|
|
# different: https://bugs.launchpad.net/swift/+bug/1610064
|
|
$memcached_servers = ["inet6:[${host}]:11211"]
|
|
$swift_memcached_servers = ["[${host}]:11211"]
|
|
$tooz_url = "redis://[${host}]:6379"
|
|
} else {
|
|
$host = '127.0.0.1'
|
|
$rabbit_env = {
|
|
'LC_ALL' => 'en_US.UTF-8',
|
|
}
|
|
$ip_version = '4'
|
|
$memcached_servers = ["${host}:11211"]
|
|
$swift_memcached_servers = $memcached_servers
|
|
$tooz_url = "redis://${host}:6379"
|
|
}
|
|
|
|
# in URL, brackets are needed
|
|
$ip_for_url = normalize_ip_for_uri($host)
|
|
|
|
$base_url = "${proto}://${ip_for_url}"
|
|
$keystone_auth_uri = "${base_url}:5000"
|
|
$keystone_admin_uri = "${base_url}:5000"
|
|
}
|