open-nomad/e2e/metrics/input/mem_windows.nomad
Tim Gross 9b2b4da3a4
e2e: run client/allocs metrics nightly tests vs Windows (#6850)
Adds Windows targets to the client/allocs metrics tests. Removes the
`allocstats` test, which covers less than these tests and is now
redundant.

Adds a firewall rule to our Windows instances so that the prometheus
server can scrape the Nomad HTTP API for metrics.
2019-12-16 08:34:17 -05:00

32 lines
517 B
HCL

job "mem_windows" {
datacenters = ["dc1"]
type = "service"
constraint {
attribute = "${attr.kernel.name}"
value = "windows"
}
group "test" {
count = 1
task "test1" {
driver = "raw_exec"
template {
data = <<EOH
$mem_stress = @()
for ($i = 0; $i -lt ###; $i++) { $mem_stress += ("a" * 200MB) }
EOH
destination = "local/memtest.ps1"
}
config {
command = "powershell"
args = ["local/memtest.ps1"]
}
}
}
}