fuel-main/cookbooks/rabbitmq
Andrey Danin d16940f509 [bootstrap] Fixes after review. Plus some code in net_probe.py to create 802.1q subif. 2012-10-03 11:26:01 +00:00
..
attributes Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
files/default Enabled management plugin for RabbitMQ 2012-09-20 18:22:57 +04:00
providers Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
recipes [bootstrap] Fixes after review. Plus some code in net_probe.py to create 802.1q subif. 2012-10-03 11:26:01 +00:00
resources Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
templates/default Added stomp plugin to RabbitMQ cookbook 2012-09-20 16:33:00 +04:00
CHANGELOG.md Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
CONTRIBUTING Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
LICENSE Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
README Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
README.md Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00
metadata.rb Introduced RabbitMQ cookbook for MCollective 2012-09-20 14:15:21 +04:00

README.md

Description

This is a cookbook for managing RabbitMQ with Chef. It uses the default settings, but can also be configured via attributes.

Recipes

default

Installs rabbitmq-server .

Resources/Providers

There are 2 LWRPs for interacting with RabbitMQ.

user

Adds and deletes users, fairly simplistic permissions management.

  • :add adds a user with a password
  • :delete deletes a user
  • :set_permissions sets the permissions for a user, vhost is optional
  • :clear_permissions clears the permissions for a user

Examples

rabbitmq_user "guest" do
  action :delete
end

rabbitmq_user "nova" do
  password "sekret"
  action :add
end

rabbitmq_user "nova" do
  vhost "/nova"
  permissions "\".*\" \".*\" \".*\""
  action :set_permissions
end

vhost

Adds and deletes vhosts.

  • :add adds a vhost
  • :delete deletes a vhost

Example

rabbitmq_vhost "/nova" do
  action :add
end

Limitations

For an already running cluster, these actions still require manual intervention:

  • changing the :erlang_cookie
  • turning :cluster from true to false

License and Author

Author:: Benjamin Black b@b3k.us Author:: Daniel DeLeo dan@kallistec.com Author:: Matt Ray matt@opscode.com

Copyright:: 2009-2011 Opscode, Inc

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.