fix: Reduce variability in benchmarks (no-changelog) (#10606)

This commit is contained in:
Tomi Turtiainen 2024-08-30 08:40:48 +03:00 committed by GitHub
parent 6c1f237775
commit eb074c04c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -21,8 +21,8 @@ variable "ssh_public_key" {
variable "vm_size" {
description = "VM Size"
# 4 vCPUs, 16 GiB memory
default = "Standard_DC4s_v2"
# 8 vCPUs, 32 GiB memory
default = "Standard_DC8_v2"
}
variable "tags" {

View file

@ -45,7 +45,7 @@ export function handleSummary(data) {
const augmentedTestScriptPath = this.augmentSummaryScript(scenario, scenarioRunName);
const runDirPath = path.dirname(augmentedTestScriptPath);
const flags: K6CliFlag[] = [['--quiet'], ['--duration', '1m'], ['--vus', '5']];
const flags: K6CliFlag[] = [['--quiet'], ['--duration', '3m'], ['--vus', '5']];
if (this.opts.k6ApiToken) {
flags.push(['--out', 'cloud']);