1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
class opnfv::compute (
$nova_rabbit_password,
$neutron_rabbit_password,
$neutron_admin_password,
$ssl_cert_file_contents,
$ssl_key_file_contents,
$br_name,
$controller_public_address,
$virt_type = 'kvm',
) {
class { '::infracloud::compute':
nova_rabbit_password => $nova_rabbit_password,
neutron_rabbit_password => $neutron_rabbit_password,
neutron_admin_password => $neutron_admin_password,
ssl_cert_file_contents => $ssl_cert_file_contents,
ssl_key_file_contents => $ssl_key_file_contents,
br_name => $br_name,
controller_public_address => $controller_public_address,
virt_type => $virt_type,
}
}
|