
We no longer split physically two different clouds, they are both located on the same location and VLAN. Therefore, one inventory and no more region logic. Change-Id: Id6ed4e50da60f6558fe204ae638a164111fe9a0d
29 lines
694 B
Puppet
29 lines
694 B
Puppet
# == Class: openstack_project::baremetal
|
|
#
|
|
class openstack_project::infracloud::baremetal (
|
|
$ironic_inventory,
|
|
$ironic_db_password,
|
|
$ipmi_passwords,
|
|
$mysql_password,
|
|
$ssh_private_key,
|
|
$ssh_public_key,
|
|
$vlan,
|
|
$gateway_ip,
|
|
) {
|
|
class { '::infracloud::bifrost':
|
|
ironic_inventory => $ironic_inventory,
|
|
ironic_db_password => $ironic_db_password,
|
|
mysql_password => $mysql_password,
|
|
ipmi_passwords => $ipmi_passwords,
|
|
ssh_private_key => $ssh_private_key,
|
|
ssh_public_key => $ssh_public_key,
|
|
vlan => $vlan,
|
|
gateway_ip => $gateway_ip,
|
|
}
|
|
|
|
realize (
|
|
User::Virtual::Localuser['colleen'],
|
|
)
|
|
|
|
}
|