rabbitmq.pp 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # == Class: nova::rabbitmq
  2. #
  3. # Installs and manages rabbitmq server for nova
  4. #
  5. # == Parameters:
  6. #
  7. # [*userid*]
  8. # (optional) The username to use when connecting to Rabbit
  9. # Defaults to 'guest'
  10. #
  11. # [*password*]
  12. # (optional) The password to use when connecting to Rabbit
  13. # Defaults to 'guest'
  14. #
  15. # [*port*]
  16. # (optional) Deprecated. The port to use when connecting to Rabbit
  17. # This parameter keeps backward compatibility when we used to manage
  18. # RabbitMQ service.
  19. # Defaults to '5672'
  20. #
  21. # [*virtual_host*]
  22. # (optional) The virtual host to use when connecting to Rabbit
  23. # Defaults to '/'
  24. #
  25. # [*cluster_disk_nodes*]
  26. # (optional) Enables/disables RabbitMQ clustering. Specify an array of Rabbit Broker
  27. # IP addresses to configure clustering.
  28. # Defaults to false
  29. #
  30. # [*enabled*]
  31. # (optional) Deprecated. Whether to enable the Rabbit resources
  32. # This parameter keeps backward compatibility when we used to manage
  33. # RabbitMQ service.
  34. # Defaults to true
  35. #
  36. class nova::rabbitmq(
  37. $userid ='guest',
  38. $password ='guest',
  39. $virtual_host ='/',
  40. # DEPRECATED PARAMETER
  41. $cluster_disk_nodes = false,
  42. $enabled = true,
  43. $port ='5672',
  44. ) {
  45. warning('nova::rabbitmq class is deprecated and will be removed in next release. Make other plans to configure rabbitmq resources.')
  46. include ::nova::deps
  47. if ($enabled) {
  48. if $userid == 'guest' {
  49. $delete_guest_user = false
  50. } else {
  51. $delete_guest_user = true
  52. rabbitmq_user { $userid:
  53. admin => true,
  54. password => $password,
  55. provider => 'rabbitmqctl',
  56. }
  57. # I need to figure out the appropriate permissions
  58. rabbitmq_user_permissions { "${userid}@${virtual_host}":
  59. configure_permission => '.*',
  60. write_permission => '.*',
  61. read_permission => '.*',
  62. provider => 'rabbitmqctl',
  63. }
  64. }
  65. rabbitmq_vhost { $virtual_host:
  66. provider => 'rabbitmqctl',
  67. }
  68. }
  69. # Only start Nova after the queue is up
  70. Class['nova::rabbitmq'] -> Anchor['nova::service::end']
  71. }