7b0629e2cb
This removes iweb configs from the project-config repo. We'll still have a few system-config items to clean up in a separate change. Change-Id: I7bd2f0f6fcd7449e724815ed0c0fe743702ae8f3
29 lines
831 B
Bash
Executable File
29 lines
831 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Creates graphs for nodepool regions from a given provider
|
|
#
|
|
# Note we are somewhat particular about keeping these separate to
|
|
# avoid the idea that we are providing some sort of cross-provider
|
|
# benchmark.
|
|
#
|
|
|
|
function create {
|
|
local provider="$1"
|
|
local stat_list="$2"
|
|
local output_file="$3"
|
|
|
|
sed -e "s/%PROVIDER%/${provider}/; " \
|
|
-e "s/%STAT_LIST%/${stat_list}/" \
|
|
-e "s/%OUTPUT_FILE%/${output_file}/" \
|
|
nodepool.template > ${output_file}
|
|
}
|
|
|
|
create Rackspace 'rax-*' nodepool-rax.yaml
|
|
create Limestone 'limestone-*' nodepool-limestone.yaml
|
|
create Linaro 'linaro-*' nodepool-linaro.yaml
|
|
create OVH 'ovh-*' nodepool-ovh.yaml
|
|
create Vexxhost 'vexxhost-*' nodepool-vexxhost.yaml
|
|
create OSUOSL 'osuosl-*' nodepool-osuosl.yaml
|
|
create InMotion 'inmotion-*' nodepool-inmotion.yaml
|