aboutsummaryrefslogtreecommitdiffstats
path: root/simulation/kubernetes/run_simulation.sh
blob: b9e68620a2a58d3ca6164a902b6d698f2558deea (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
45
46
47
48
49
50
#!/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 --force --grace-period=0
  kubectl delete deployment dexcon-simulation-peer-server --force --grace-period=0
  sleep 10

  kubectl apply -f peer-server.yaml

  while true; do
    if kubectl get pods -l app=dexcon-simulation-peer-server | grep Running;
    then
      break
    fi
    sleep 1
  done

  kubectl apply -f node.yaml
}

main() {
  local num_nodes=$1

  if [ "$num_nodes" == "" ]; then
    num_nodes=7
  fi

  # Render configuration files.
  sed "s/{{numNodes}}/$num_nodes/" node.yaml.in > node.yaml
  sed "s/{{numNodes}}/$num_nodes/" config.toml.in > config.toml

  build_binary
  build_docker_image
  start_simulation
}

main $*