b67e9a30432634d4134d356a1b7160efaf6facc9 hiram Wed Jun 22 11:37:24 2022 -0700 nomore newdev no redmine diff --git src/hg/utils/automation/HgAutomate.pm src/hg/utils/automation/HgAutomate.pm index 8df1468..c8c6b8a 100755 --- src/hg/utils/automation/HgAutomate.pm +++ src/hg/utils/automation/HgAutomate.pm @@ -53,34 +53,31 @@ sub readMainCluster(); # forward declaration to keep code order # the name of the cluster is in a separate text file, so it's easier to # use from bash scripts %cluster = ( readMainCluster() => { 'enabled' => 1, 'gigaHz' => 1.4, 'ram' => 8, 'hostCount' => 992, }, 'hgwdev-101' => { 'enabled' => 1, 'gigaHz' => 2.1, 'ram' => 1, 'hostCount' => 32, }, 'hgwdev' => { 'enabled' => 1, 'gigaHz' => 2.1, 'ram' => 1, - 'hostCount' => 32, }, - 'newdev' => - { 'enabled' => 1, 'gigaHz' => 2.1, 'ram' => 1, - 'hostCount' => 32, }, + 'hostCount' => 64, }, ); my %obsoleteCluster = ( 'swarm' => , { 'enabled' => 1, 'gigaHz' => 2.33, 'ram' => 8, 'hostCount' => 1024, }, 'memk' => { 'enabled' => 1, 'gigaHz' => 1.0, 'ram' => 32, 'hostCount' => 32, }, 'encodek' => { 'enabled' => 1, 'gigaHz' => 2.0, 'ram' => 16, 'hostCount' => 48, }, ); my @allClusters = (keys %cluster);