system-config/modules/openstack_project/manifests/infracloud/baremetal.pp
Spencer Krum 80c1ba2d51 Realize infracloud admins
These users already have access by using the 'baremetal' account
so formalizing this is better overall.

This is a re-up of I31e0504f68e196b0b249b5b7b750861a752679ac

Change-Id: Ic487e09ee8850c6a94c264c83593ba4a903cffa0
Depends-On: I120760d614df92b3af6dcbf5adf1e7ccd9da94ab
2016-02-25 09:36:00 -08:00

32 lines
789 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'],
User::Virtual::Localuser['rcarrillocruz'],
)
}