From 764c3971276916ae4ce79323c1735f23cd009035 Mon Sep 17 00:00:00 2001 From: Ricardo Carrillo Cruz Date: Wed, 10 Aug 2016 10:44:43 +0200 Subject: [PATCH] Remove baremetal00.hpuseast from site.pp The hpuseast naming is not relevant anymore, we now have vanilla/chocolate regions. Moreover, there will be just one baremetal for both regions since they are on the same VLAN. Change-Id: I8f80cb691ce05f031657a12bcf0b09477df848c0 --- manifests/site.pp | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/manifests/site.pp b/manifests/site.pp index e1610bf076..3d0b56fb58 100644 --- a/manifests/site.pp +++ b/manifests/site.pp @@ -1353,25 +1353,4 @@ node /^baremetal\d{2}\.vanilla\.ic\.openstack\.org$/ { } } -node /^baremetal\d{2}\.hpuseast\.ic\.openstack\.org$/ { - $group = 'infracloud' - class { '::openstack_project::server': - iptables_public_udp_ports => [67,69], - sysadmins => hiera('sysadmins', []), - enable_unbound => false, - } - - class { '::openstack_project::infracloud::baremetal': - ironic_inventory => hiera('ironic_inventory_hpuseast', {}), - ironic_db_password => hiera('ironic_db_password'), - mysql_password => hiera('bifrost_mysql_password'), - region => 'hpuseast', - ipmi_passwords => hiera('ipmi_east_passwords'), - ssh_private_key => hiera('bifrost_hpuseast_ssh_private_key'), - ssh_public_key => hiera('bifrost_hpuseast_ssh_public_key'), - vlan => 1598, - gateway_ip => '15.126.48.1', - } -} - # vim:sw=2:ts=2:expandtab:textwidth=79