system-config/modules/openstack_project/manifests/infracloud/compute.pp
Paul Belanger cca91dbc45
Install unbound on infracloud servers
Here we are creating openstack_project::infracloud::base which will
install unbound. We to this so we can cache DNS requests to the local
server. This is also how our control plane for the OpenStack project
works.

Change-Id: I62feccc5c325369a774b457e80301b46311507e7
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2016-09-01 08:47:28 -04:00

22 lines
736 B
Puppet

class openstack_project::infracloud::compute (
$nova_rabbit_password,
$neutron_rabbit_password,
$neutron_admin_password,
$ssl_key_file_contents,
$ssl_cert_file_contents,
$br_name,
$controller_public_address,
) {
include ::openstack_project::infracloud::base
class { '::infracloud::compute':
nova_rabbit_password => $nova_rabbit_password,
neutron_rabbit_password => $neutron_rabbit_password,
neutron_admin_password => $neutron_admin_password,
ssl_key_file_contents => $ssl_key_file_contents,
ssl_cert_file_contents => $ssl_cert_file_contents,
br_name => $br_name,
controller_public_address => $controller_public_address,
}
}