From a8b0bc490ed9423b1609034681fa1e748e5fa344 Mon Sep 17 00:00:00 2001 From: Ben Nemec Date: Wed, 16 Nov 2016 18:10:14 +0000 Subject: [PATCH] Update ovb baremetal flavor to match infra flavor We've increased the baremetal flavor to have 8 GB of RAM and 4 vcpus in order to help with resource starvation issues in CI jobs. This just updates the prepare script to match. This also requires increasing the nodepool quota. Some quick math suggests this would now max out about 2.7 TB, so I'm setting the quota to about 3 TB so there's a little head room for things like orphaned stacks and infra vms. Change-Id: I3d354c2e5f76e220d07895bc2bc262eabe5ebb88 --- scripts/prepare-ovb-cloud.sh | 2 +- scripts/rh1.env | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/prepare-ovb-cloud.sh b/scripts/prepare-ovb-cloud.sh index 3c967004f..79b7c671c 100755 --- a/scripts/prepare-ovb-cloud.sh +++ b/scripts/prepare-ovb-cloud.sh @@ -9,7 +9,7 @@ source $1 # We can't use heat to create the flavors as they can't be given a name with the heat resource nova flavor-show bmc || nova flavor-create bmc auto 512 20 1 -nova flavor-show baremetal || nova flavor-create baremetal auto 6144 41 1 +nova flavor-show baremetal || nova flavor-create baremetal auto 8192 41 4 nova flavor-show undercloud || nova flavor-create undercloud auto 8192 40 4 # Remove the flavors that provide most disk space, the disks on rh2 are small we've over commited diff --git a/scripts/rh1.env b/scripts/rh1.env index e120afd77..ed0b58233 100644 --- a/scripts/rh1.env +++ b/scripts/rh1.env @@ -11,7 +11,7 @@ export PUBLIC_IP_FLOATING_END=66.187.229.254 # Should be slightly higher then the max number of CI slaves running. export TOTALOVBENVS=80 -export QUOTA_RAM=2580480 +export QUOTA_RAM=3145728 export QUOTA_FIPS=75 export QUOTA_NETS=1000 export QUOTA_PORTS=10000