cca91dbc45
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>
22 lines
736 B
Puppet
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,
|
|
}
|
|
}
|