blob: 0ebd1a5d79afb895f08a33868d40cd549b67f869 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#!/bin/bash
IMAGE_TAG=asia.gcr.io/cobinhood/dexcon-simulation:latest
build_binary() {
make DOCKER=true -C ../..
cp -r ../../build .
}
build_docker_image() {
docker build -t ${IMAGE_TAG} .
docker push ${IMAGE_TAG}
}
start_simulation() {
kubectl delete deployment dexcon-simulation-with-scheduler --force --grace-period=0
sleep 30
kubectl apply -f scheduler.yaml
}
main() {
local num_validators=$1
local num_cpus=$2
if [ "$num_validators" == "" ]; then
num_validators=31
fi
if [ "$num_cpus" == "" ]; then
num_cpus=2
fi
# Render configuration files.
sed "s/{{numValidators}}/$num_validators/" config.toml.in > config.toml
sed "s/{{numCPUs}}/$num_cpus/" scheduler.yaml.in > scheduler.yaml
build_binary
build_docker_image
start_simulation
}
main $*
|