3d45fe1635
Add definition for baremetal nodes for hpuswest, plus a script to one-time enroll and deploy nodes in bifrost. Co-Authored-By: Clint Byrum <clint@fewbar.com> Co-Authored-By: greghaynes <greg@greghaynes.net> Co-Authored-By: Yolanda Robla <info@ysoft.biz> Depends-On: I949344c16cf9ee3965b0bc96850eb208ac65b168 Change-Id: I947add7e8e8aa88fe6e881d77fd3278910b3b903
26 lines
683 B
Puppet
26 lines
683 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,
|
|
}
|
|
}
|