File tree 2 files changed +4
-4
lines changed
scaletest/templates/scaletest-runner
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -630,7 +630,7 @@ resource "kubernetes_pod" "main" {
630
630
}
631
631
# Set the pod delete timeout to termination_grace_period_seconds + 1m.
632
632
timeouts {
633
- delete = " ${ (local. workspace_pod_termination_grace_period_seconds + 120 ) / 60 } s"
633
+ delete = " ${ (local. workspace_pod_termination_grace_period_seconds + 120 )} s"
634
634
}
635
635
spec {
636
636
security_context {
Original file line number Diff line number Diff line change 55
55
sleep " ${delay} "
56
56
annotate_grafana greedy_agent " ${scenario} : Greedy agent"
57
57
58
- # Produce load at about 1000MB/s.
58
+ # Produce load at about 1000MB/s (25MB/40ms) .
59
59
set +e
60
60
coder exp scaletest workspace-traffic \
61
61
--template " ${SCALETEST_PARAM_GREEDY_AGENT_TEMPLATE} " \
62
62
--timeout " $(( delay)) s" \
63
63
--job-timeout " $(( delay)) s" \
64
64
--output json:" ${SCALETEST_RESULTS_DIR} /traffic-${type} -greedy-agent.json" \
65
- --bytes-per-tick $(( 1024 * 1000 )) \
66
- --tick-interval 1ms \
65
+ --bytes-per-tick $(( 1024 * 1024 * 25 )) \
66
+ --tick-interval 40ms \
67
67
" ${args[@]} "
68
68
status=${?}
69
69
You can’t perform that action at this time.
0 commit comments