Skip to content
Snippets Groups Projects
Commit c09bec05 authored by Alessandro Costantini's avatar Alessandro Costantini
Browse files

rabbit_package_gpg_key variable added to define new rabbit gpg

parent 3881086d
No related branches found
No related tags found
2 merge requests!31Mitaka,!30Dev roadtomitaka
......@@ -19,6 +19,7 @@ $haproxy_stats_login = "stats"
$haproxy_stats_password = "stats"
$haproxy_stats_uri = "/"
$rabbit_erlang = 'JTZEOFFHPRJOTLUWEFQR'
$rabbit_package_gpg_key = "https://www.rabbitmq.com/rabbitmq-release-signing-key.asc"
#node '<RHMK_HOSTNAME1>' {
# include 'iaas::params'
......@@ -40,6 +41,7 @@ $rabbit_erlang = 'JTZEOFFHPRJOTLUWEFQR'
# haproxy_stats_uri => $haproxy_stats_uri,
# rabbit_erlang => $rabbit_erlang,
# rabbit_hostname => $hostname,
# rabbit_package_gpg_key => $rabbit_package_gpg_key,
##set zookeeper index (1,..,N)
# zookeeper_id => '1',
# }
......@@ -68,6 +70,7 @@ $rabbit_erlang = 'JTZEOFFHPRJOTLUWEFQR'
# haproxy_stats_uri => $haproxy_stats_uri,
# rabbit_erlang => $rabbit_erlang,
# rabbit_hostname => $hostname,
# rabbit_package_gpg_key => $rabbit_package_gpg_key,
##set zookeeper index (1,..,N)
# zookeeper_id => '2',
# }
......@@ -96,6 +99,7 @@ $rabbit_erlang = 'JTZEOFFHPRJOTLUWEFQR'
# haproxy_stats_uri => $haproxy_stats_uri,
# rabbit_erlang => $rabbit_erlang,
# rabbit_hostname => $hostname,
# rabbit_package_gpg_key => $rabbit_package_gpg_key,
##set zookeeper index (1,..,N)
# zookeeper_id => '3',
# }
......
......@@ -31,6 +31,7 @@ $controller_hostnames = ['<CONTROLLER1_HOSTNAME>', '<CONTROLLER2_HOSTNAME>'],
##RabbitMQ
$rabbit_user = 'openstack',
$rabbit_password = 'openstack',
$rabbit_package_gpg_key = 'https://www.rabbitmq.com/rabbitmq-release-signing-key.asc',
##CEPH
$ceph_fsid = 'f65809d3-7961-4cd7-b731-a9bc94bc6e9c',
......
......@@ -54,6 +54,7 @@ class iaas::role::rhmk(
$rabbit_user = $iaas::params::rabbit_user, #'openstack',
$rabbit_password = $iaas::params::rabbit_password, #'openstack',
$rabbit_erlang = 'JTZEOFFHPRJOTLUWEFQR',
$rabbit_package_gpg_key = $iaas::params::rabbit_package_gpg_key,
# ZOOKEEPER
$zookeeper_id = undef,
) {
......@@ -106,6 +107,7 @@ class iaas::role::rhmk(
user => $rabbit_user,
password => $rabbit_password,
erlang => $rabbit_erlang,
package_gpg_key => $rabbit_package_gpg_key,
}
class { 'iaas::profile::zookeeper':
admin_interface => $admin_interface,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment