43e1870094
I am now core, thus I'm getting the user added to all infra machines regardless. Change-Id: Ic6baf2d4b5312f1806d64d2a292266bab04c663a
31 lines
742 B
Puppet
31 lines
742 B
Puppet
# == Class: openstack_project::baremetal
|
|
#
|
|
class openstack_project::infracloud::baremetal (
|
|
$ironic_inventory,
|
|
$ironic_db_password,
|
|
$ipmi_passwords,
|
|
$mysql_password,
|
|
$region,
|
|
$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,
|
|
region => $region,
|
|
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'],
|
|
)
|
|
|
|
}
|