File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -45,11 +45,11 @@ It's possible to tune the default configuration through environment variables. T
45
45
| KUBE_BURNER_RELEASE_URL | Kube-burner binary URL | ` https://github.com/cloud-bulldozer/kube-burner/releases/download/v0.16/kube-burner-0.16-Linux-x86_64.tar.gz ` |
46
46
| LARGE_SCALE_THRESHOLD | Number of worker nodes required to consider a large scale scenario | ` 24 ` |
47
47
| SMALL_SCALE_ROUTES | Number of routes of each termination to create in the small scale scenario | ` 100 ` |
48
- | SMALL_SCALE_CLIENTS | Threads/route to use in the small scale scenario | ` 1 40 200 ` |
49
- | SMALL_SCALE_CLIENTS_MIX | Threads/route to use in the small scale scenario with mix termination | ` 1 20 80 ` |
48
+ | SMALL_SCALE_CLIENTS | Threads/route to use in the small scale scenario | ` 1 100 ` |
49
+ | SMALL_SCALE_CLIENTS_MIX | Threads/route to use in the small scale scenario with mix termination | ` 1 50 ` |
50
50
| LARGE_SCALE_ROUTES | Number of routes of each termination to create in the large scale scenario | ` 500 ` |
51
- | LARGE_SCALE_CLIENTS | Threads/route to use in the large scale scenario | ` 1 20 80 ` |
52
- | LARGE_SCALE_CLIENTS_MIX | Threads/route to use in the large scale scenario with mix termination | ` 1 10 20 ` |
51
+ | LARGE_SCALE_CLIENTS | Threads/route to use in the large scale scenario | ` 1 20 ` |
52
+ | LARGE_SCALE_CLIENTS_MIX | Threads/route to use in the large scale scenario with mix termination | ` 1 10 ` |
53
53
| DEPLOYMENT_REPLICAS | Number of pod replicas per deployment | ` 1 ` |
54
54
| TLS_REUSE | Reuse TLS session | ` true ` |
55
55
| SAMPLES | Number of samples to perform of each test | ` 2 ` |
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ get_scenario(){
10
10
if [[ ${NUM_NODES} -ge ${LARGE_SCALE_THRESHOLD} ]]; then
11
11
log " Large scale scenario detected: #workers >= ${LARGE_SCALE_THRESHOLD} "
12
12
export NUMBER_OF_ROUTES=${LARGE_SCALE_ROUTES:- 500}
13
- CLIENTS=${LARGE_SCALE_CLIENTS:- " 1 20 80 " }
14
- CLIENTS_MIX=${LARGE_SCALE_CLIENTS_MIX:- " 1 10 20 " }
13
+ CLIENTS=${LARGE_SCALE_CLIENTS:- " 1 20" }
14
+ CLIENTS_MIX=${LARGE_SCALE_CLIENTS_MIX:- " 1 10" }
15
15
else
16
16
log " Small scale scenario detected: #workers < ${LARGE_SCALE_THRESHOLD} "
17
17
export NUMBER_OF_ROUTES=${SMALL_SCALE_ROUTES:- 100}
18
- CLIENTS=${SMALL_SCALE_CLIENTS:- " 1 40 200 " }
19
- CLIENTS_MIX=${SMALL_SCALE_CLIENTS_MIX:- " 1 20 80 " }
18
+ CLIENTS=${SMALL_SCALE_CLIENTS:- " 1 100 " }
19
+ CLIENTS_MIX=${SMALL_SCALE_CLIENTS_MIX:- " 1 50 " }
20
20
fi
21
21
}
22
22
You can’t perform that action at this time.
0 commit comments