55b83f9e22
This adds a manifest to install the controller components as referenced in the Infra Cloud guide[1]: - single-node mysql - single-node rabbitmq - keystone using the uuid token provider and apache/wsgi with ssl - glance api and registry - neutron server and ml2 linuxbridge plugin and agent supporting a provider network[2] - nova api, scheduler, conductor [1] http://docs.openstack.org/infra/system-config/infra-cloud.html [2] http://docs.openstack.org/networking-guide/deploy_scenario4b.html Change-Id: I380f62e48b29103d5abffad24abd9aeca4621f02
14 lines
281 B
Puppet
14 lines
281 B
Puppet
define infracloud::rabbitmq_user(
|
|
$password,
|
|
) {
|
|
rabbitmq_user { $name:
|
|
admin => false,
|
|
password => $password,
|
|
}
|
|
rabbitmq_user_permissions { "${name}@/":
|
|
configure_permission => '.*',
|
|
read_permission => '.*',
|
|
write_permission => '.*',
|
|
}
|
|
}
|