Stop disabling selinux
[releng.git] / prototypes / puppet-infracloud / modules / opnfv / manifests / compute.pp
1 class opnfv::compute (
2   $nova_rabbit_password,
3   $neutron_rabbit_password,
4   $neutron_admin_password,
5   $ssl_cert_file_contents,
6   $ssl_key_file_contents,
7   $br_name,
8   $controller_public_address,
9   $virt_type = 'kvm',
10 ) {
11   class { '::infracloud::compute':
12     nova_rabbit_password          => $nova_rabbit_password,
13     neutron_rabbit_password       => $neutron_rabbit_password,
14     neutron_admin_password        => $neutron_admin_password,
15     ssl_cert_file_contents        => $ssl_cert_file_contents,
16     ssl_key_file_contents         => $ssl_key_file_contents,
17     br_name                       => $br_name,
18     controller_public_address     => $controller_public_address,
19     virt_type                     => $virt_type,
20   }
21
22 }
23