Version information
released Mar 17th 2015
This version is compatible with:
- Puppet Enterprise 3.x
- Puppet >=2.7.20 <4.0.0
- ,
Start using this module
Add this module to your Puppetfile:
mod 'thias-rabbitmq', '0.1.1'
Learn more about managing modules with a PuppetfileDocumentation
thias/rabbitmq — version 0.1.1 Mar 17th 2015
puppet-rabbitmq
Overview
Install and enable RabbitMQ.
rabbitmq
: Class to install and enable the server.
If you are looking for a more complete module, check out the official PuppetLabs RabbitMQ module. This module is made to be minimalistic, with few external requirements : stdlib, selinux (optional), nothing more.
It has been initially tested only with Red Hat Enterprise Linux 7.
Examples
include '::rabbitmq'
Once the RabbitMQ server is up and running, it initially needs to be manually
configured. This is where other modules might go beyond this basic one. See
rabbitmqctl(1)
for more information.
If you already have an existing configuration, you should be able to pass it
as-is using source
or content
type parameters, with your own files or
templates (here we use an included example cluster template ) :
$cluster_nodes = [ 'rabbit@node1', 'rabbit@node2' ]
class { '::rabbitmq':
rabbitmq_config_content => template('rabbitmq/rabbitmq.config-cluster.erb'),
rabbitmq_env => {
'NODENAME' => "rabbit@${::hostname}.example.lan",
'USE_LONGNAME' => 'true',
},
enabled_plugins => [ 'rabbitmq_management' ],
}
Dependencies
- puppetlabs/stdlib (>= 3.2.0)
Copyright (C) 2015 Matthias Saou Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.